-
Notifications
You must be signed in to change notification settings - Fork 0
/
planes.css
117 lines (88 loc) · 1.91 KB
/
planes.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
.planes {
background-color: var(--background-ceniza-claro);
padding-top: 3rem;
padding-bottom: 3rem;
}
.planes__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;
}
.planes__tarjetas {
display: flex;
flex-direction: column;
align-items: center;
}
.tarjetas {
display: flex;
flex-direction: column;
background-color: var(--background-blanco);
width: 100%;
max-width: 300px;
margin-bottom: 2rem;
border-radius: 5px;
box-shadow: 0 2px 10px 2px #00000010;
}
.tarjetas__titulo {
font-weight: 700;
font-size: 1.5rem;
text-align: center;
padding: .75rem 0;
margin-bottom: .5rem;
border-bottom: 1px solid var(--background-azul-claro);
}
.tarjetas__contenido {
padding: 0 15%;
}
.tarjetas__precio {
font-weight: 700;
font-size: 3rem;
text-align: center;
margin-top: 1.25rem;
margin-bottom: 1.25rem;
}
.tarjetas__texto {
color: var(--fuente-ceniza-claro);
line-height: 28px;
}
.tarjetas__boton {
font-size: 1.2rem;
font-weight: 700;
width: 100%;
align-self: center;
padding: .75rem 2rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
.tarjetas--start {
color: var(--planes-card-start);
}
.tarjetas--ultra {
color: var(--planes-card-ultra);
}
.tarjetas--mega {
color: var(--planes-card-mega);
}
.tarjetas__boton--start {
border-color: var(--planes-card-start);
}
.tarjetas__boton--ultra {
border-color: var(--planes-card-ultra);
}
.tarjetas__boton--mega {
border-color: var(--planes-card-mega);
}
@media screen and (min-width: 1024px) {
.planes__tarjetas {
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.tarjetas {
max-width: 300px;
}
}