-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
170 lines (146 loc) · 3.14 KB
/
estilo.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
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
169
170
body {
margin: 0;
font-family: 'Cinzel', serif;
background-image: url(imagens/bodyfundo.png);
background-size: cover;
background-attachment: fixed;
background-position: center;
}
.hero {
background-image: url(imagens/fundo.jpg);
height: 900px;
background-size: cover;
background-position: right center;
padding-top: 1px;
}
.hero-content {
margin: 200px auto 0;
width: 80%;
text-align: center;
color: white;
letter-spacing: 1em;
}
.hero-content h1 {
font-size: 4rem;
text-shadow: 2px 2px 2px rgb(163, 163, 163);
text-transform: uppercase;
margin-bottom: 0;
}
.hero-content p {
background-color: rgba(0, 0, 0, .7);
font-size: 1.2rem;
display: inline-block;
padding: .8rem;
border-bottom: 2px solid;
text-align: center;
font-family: Arial;
letter-spacing: .06rem;
}
.hero nav ul {
margin: 20px 80px 0 0;
text-align: right;
}
.hero nav li {
display: inline-block;
list-style-type: none;
border: 1px solid white;
margin-left: 16px;
}
.hero nav a {
background-color: rgba(0, 0, 0, .3);
padding: .8rem;
display: block;
color: white;
text-decoration: none;
text-transform: uppercase;
font-size: .8rem;
letter-spacing: 2px;
}
.hero nav a:hover {
background-color: rgba(112, 110, 110, 0.5);
}
main {
width: 90%;
margin: auto;
max-width: 860px;
}
article {
background-color: rgba(233, 228, 228, 0.658);
padding: 16px;
margin-bottom: 32px;
margin-top: 32px;
}
article h2 {
border-bottom: 2px solid #ccc;
background-color: rgba(8, 8, 8, 0.795);
padding: 10px;
margin-top: 0;
color: #fff;
letter-spacing: .09em;
font-size: 1.6rem;
}
article p {
font-family: Arial;
font-size: 1rem;
text-align: justify;
letter-spacing: .08rem;
line-height: 1.5rem;
}
article a {
text-decoration: none;
color: rgba(0, 0, 0, .7);
font-weight: 800;
}
.btn {
background-color: #cdc7c3;
display: block;
padding: 12px 16px;
border-radius: 6px;
margin-left: auto;
width: fit-content;
}
.div_icons {
display: flex;
justify-content: center;
}
.div_icons img {
align-items: center;
padding: 1rem;
width: 3rem;
}
.div_icons img:hover {
transform: scale(1.1);
transition: transform 0.5s ease-in-out;
}
@media screen and (min-width: 48em) {
/*768px maior que*/
.header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header_nav ul {
margin-right: 2em;
font-size: .7em;
}
.header_nav li {
display: inline-flex;
}
.header {
text-align: center;
margin: auto;
}
.hero nav a {
font-size: 1.2rem;
letter-spacing: 2px;
}
}
.rodape {
color: white;
background-color: #6b6c68;
text-align: center;
padding: 1.8rem;
text-shadow: 2px 2px 3px black;
letter-spacing: 2px;
font-size: .9rem;
}