-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
152 lines (127 loc) · 2.12 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.limita-secao {
max-width: 1024px;
margin: 0 auto;
}
header div {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 15px;
}
header img {
width: 150px;
}
header nav {
font-size: 18px;
}
header a {
margin: 0 5px;
text-decoration: none;
color: #000;
}
section {
padding: 60px 20px;
}
.secao-capa {
position: relative;
width: 100%;
height: 100%;
text-align: center;
background-image: url('img/bg-estacao.jpg');
background-repeat: no-repeat;
background-size: cover;
}
.secao-capa::before {
content: "";
width: 100%;
height: 100%;
background: #000;
opacity: 0.5;
position: absolute;
top: 0;
left: 0;
}
.secao-capa div {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
text-transform: uppercase;
padding: 60px 20px;
z-index: 1;
}
.secao-capa h1 {
font-size: 80px;
}
.secao-capa h2 {
font-size: 35px;
}
.secao-capa h1, .secao-capa h2 {
margin: 0;
color: #ffffff;
text-shadow: 1px 1px 5px #000000;
}
h3 {
font-size: 32px;
text-align: center;
margin: 0 0 40px 0;
}
.secao-destaque img:first-of-type {
width: 100%;
}
p {
line-height: 32px;
}
.secao-destaque p::first-letter {
font-size: 18px;
font-weight: bold;
}
.secao-pontos {
background: #e9e9e9;
}
li {
display: flex;
align-items: center;
margin: 12px 0 0px 0;
}
ul {
list-style: none;
padding: 0;
}
li::before {
content: "";
width: 20px;
height: 20px;
background-image: url("img/seta.png");
margin: 0 6px 0 0;
}
.galeria {
width: 100%;
}
.galeria img {
width: calc((100% / 3) - 3px);
opacity: 0.6;
}
.galeria img:hover {
opacity: 1;
}
footer {
width: 100%;
height: 50px;
margin: 25px 0 0 0;
background: #f5c002;
display: flex;
justify-content: center;
align-items: center;
}