-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
169 lines (136 loc) · 2.38 KB
/
Copy pathmain.css
File metadata and controls
169 lines (136 loc) · 2.38 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
color: #fff;
position: relative;
height: 400px ;
display: grid;
}
#backgroundimg {
position: absolute;
height: 100%;
width: 100%;
background-image: url(Imagens/header\ final\ 2.jpg);
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
opacity: 40%;
}
/*o z-index é profundidade, dessa maneira o texto que não aparecia ficou na frente da imagem. Para que ele não fique translúcido basta colocar o z index do background como -1,
ou seja, estou jogando o background para traz e o texto para frente.*/
header h1 {
font-size: 120px;
z-index: 2;
}
header h1,
section h2, .formulario,
form button {
font-family: 'Anton', sans-serif;
}
body,
.formulario p,
input, textarea {
font-family: 'Space Grotesk', sans-serif;
}
footer{
font-size: 12px;
}
header nav li {
display: inline;
}
header nav li a {
color: #fff;
text-decoration: none;
margin-right: 30px;
margin-left: 16px;
}
body {
background-color: black;
color: #fff;
}
section h1,
section h2,
section h3 {
font-weight: normal;
}
.container {
width: 1366px;
width: 90%;
margin: 0 auto;
}
.cont2 img {
height: 200px;
margin-left: 35%;
margin-top: 20px;
width: 35%;
}
.articles {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.articles article img {
height: 200px;
width: 100%;
}
.articles article {
width: 25%;
margin-bottom: 16px;
margin-right: 30px;
}
section{
padding: 16px 0;
}
section p {
margin-bottom: 8px;
}
.heman img {
margin-left: 27%;
height: 400px;
margin-top: 50px;
opacity: 80%;
width: 50%;
margin-bottom: 40px;
}
.heman {
background-color: rgb(15, 14, 14);
}
.social-links img{
height: 24px;
}
.social-links li {
display: inline;
margin-right: 8px;
}
.social-links li a {
text-decoration: none;
}
#contact .container{
display: block;
}
.contact-methods {
display: flex;
justify-content: space-between;
}
form input,
form textarea,
form button {
display: block;
width: 320px;
margin-bottom: 8px;
padding: 8px;
}
form textarea {
resize: none;
height: 180px;
}
form button {
background-color: #ffffff;
cursor: pointer;
}
form button:hover {
background-color: #c5c5c5;
}