-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile.css
More file actions
121 lines (84 loc) · 1.67 KB
/
Copy pathmobile.css
File metadata and controls
121 lines (84 loc) · 1.67 KB
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
font-family: 'Open Sans', sans-serif;
}
body {
background-color: aliceblue;
}
.main {
display: flex;
justify-content: center;
}
.card {
display: flex;
flex-direction: column;
border: solid 1px transparent;
border-radius: 20px;
box-shadow: 1px 3px 20px rgb(163, 163, 163);
justify-content: space-between;
margin: 40px;
min-width: 300px;
max-width: 480px;
background-color: white;
}
.card__img {
width: 100%;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.card__text {
padding: 20px;
}
.title {
text-align: center;
font-weight: 1000;
}
.parrafo {
font-size: 14px;
text-align: center;
line-height: 25px;
}
.plan {
display: flex;
justify-content: space-evenly;
align-items: center;
border: solid 2px transparent;
border-radius: 4px;
box-shadow: 1px 1px 3px rgb(207, 196, 196);
background-color: rgb(248, 250, 252);
padding: 10px;
margin: 10px;
}
.plan__img{
width: 40px;
}
.plan__cambio{
color: blueviolet;
font-weight: 900;
}
.boton {
margin-top: 30px;
display: flex;
flex-direction: column;
margin: 10px;
}
.btn {
font-weight: bolder;
padding: 10px;
}
.boton__pago {
background-color: blueviolet;
color: aliceblue;
border: solid 2px transparent;
border-radius: 12px;
margin-bottom: 10px;
box-shadow: 1px 4px 10px rgb(177, 176, 176);
}
.boton__cancel {
background-color: white;
color: rgb(133, 133, 133);
border: solid 1px transparent;
}