-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (110 loc) · 2.13 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
font-family: "Poppins", sans-serif;
}
body {
overflow: hidden;
}
.background {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
background-image: url(fundo_azulfinal.jpg);
background-size: cover;
background-position: center;
width: 100%;
height: 100%;
}
header {
display: flex;
justify-content: space-around;
max-width: 100%;
align-items: center;
text-align: center;
padding-top: 1rem;
position: fixed;
width: 100%;
height: 15vh;
background-color: mediumblue;
}
.cabeçalho-link {
display: flex;
gap: 6rem;
font-weight: 300;
cursor: pointer;
}
.cabeçalho-link a {
color: antiquewhite;
font-size: 25px;
}
button {
color: blue;
background: transparent;
border: solid 1px blue;
padding: 5px;
font-size: 20px;
width: 150px;
cursor: pointer;
}
button:hover{
background-color: #007fff;
color:antiquewhite;
transition: 0,5;
}
.container-text{
padding: 200px 0 0 500px;
}
.text h3{
color:antiquewhite;
font-size: 20px;
}
.text h1{
color:antiquewhite;
margin-top: 15px;
}
.text span{
color:blue;
}
.text p{
color: antiquewhite;
font-size: 25px;
font-weight: 300;
margin-top: 10px;
}
.contatos a{
color: blue;
margin-top: 5px;
padding: 100px;
gap: 100px;
}
.sobre{
color: aliceblue;
padding: 300px 200px 0 200px;
font-size: 20px;
}
.projetos{
color:aliceblue;
padding: 200px 200px 200px 200px;
font-size: 20px;
}
.contatosf{
color: aliceblue;
padding: 75px 200px 200px 200px;
font-size: 20px;
text-align: center;
align-items:center;
display: flex;
justify-content: space-around;
}
.titulomc{
color: aliceblue;
padding: 200px 200px 50px 200px;
font-size: 20px;
}
.imagens{
width: 40px;
height: 100px;
}