-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopicos.css
More file actions
44 lines (43 loc) · 865 Bytes
/
topicos.css
File metadata and controls
44 lines (43 loc) · 865 Bytes
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
@import url(header.css);
@import url(banner.css);
@import url(carrossel.css);
@import url(topicos.css);
.topicos{
background: var(--azul-degrade);
text-align: center;
}
.topicos_titulo{
color: var(--branco);
font-weight: 300;
}
.topicos_lista{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.topicos_item{
margin: 2em 0.5em;
}
.topicos_link{
color: var(--branco);
padding: 1em;
background-color: var(--laranja);
text-decoration: none;
font-size: 14px;
font-weight: 700;
}
.topicos{
background: var(--azul-degrade);
text-align: center;
padding: 1em 0;
}
.topicos_titulo{
color: var(--branco);
font-weight: 300;
margin-bottom: 1em;
}
@media screen and (min-width:1728px){
.topicos{
padding:3em 30vw;
}
}