-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinformacion.css
53 lines (45 loc) · 1010 Bytes
/
informacion.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
.informacion {
display: flex;
padding: 30px;
flex-direction: row;
justify-content: space-between;
}
.informacion .info-img {
width: 45%;
}
.informacion .info-img img {
width: 100%;
border-radius: 20px;
}
.informacion .texto-informacion {
width: 45%;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.informacion .texto-informacion h2 {
font-size: 40px;
margin-bottom: 20px;
}
.informacion .texto-informacion p {
font-size: 20px;
line-height: 40px;
}
.texto-informacion .cta-button {
display: flex;
padding: 20px;
text-decoration: none;
background-color: #ea4235;
border-radius: 20px;
color: #fff;
justify-content: center;
margin-top: 60px;
font-size: 20px;
border: 2px solid #ea4235;
}
.texto-informacion .cta-button:hover {
background-color: #fff;
color: #ea4235;
border: 2px solid #ea4235;
}