-
Notifications
You must be signed in to change notification settings - Fork 0
/
sobre-nosotros.css
55 lines (48 loc) · 1.08 KB
/
sobre-nosotros.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
.sobre_nosotros {
padding-top: 3rem;
padding-bottom: 3rem;
}
.sobre_nosotros__titulo {
color: var(--fuente-ceniza-oscuro);
font-weight: 700;
font-size: 1.5rem;
font-family: var(--montserrat);
text-transform: uppercase;
text-align: center;
margin-bottom: 1.25rem;
}
.sobre_nosotros__texto {
line-height: normal;
margin-bottom: 1rem;
}
.sobre_nosotros__plataformas {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-bottom: 1rem;
}
.sobre-nosotros {
color: var(--fuente-ceniza-oscuro);
font-weight: 700;
}
.sobre_nosotros__imagen{
display: none;
}
@media screen and (min-width: 1024px) {
.sobre_nosotros {
display: flex;
}
.sobre_nosotros__contenido {
margin-right: 3rem;
}
.sobre_nosotros__titulo {
text-align: left;
}
.sobre-nosotros__texto--division {
border-bottom: 1px solid var(--cinza-medio);
padding-bottom: 1.5rem;
}
.sobre_nosotros__imagen {
display: block;
}
}