-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
115 lines (101 loc) · 1.75 KB
/
main.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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Roboto, san-serif;
}
.container {
padding: 15px;
display: flex;
flex-wrap: wrap;
}
.card {
padding: 15px 15px 10px;
display: flex;
flex-direction: column;
background: linear-gradient(to right, #80c1f2 0%, #7c9ef2 100%);
border-radius: 20px;
color: #fff;
position: relative;
overflow: hidden;
margin-bottom: 16px;
margin-right: 16px;
flex: auto;
}
.card img {
width: 100%;
height: 60px;
width: 60px;
border-radius: 50%;
object-fit: cover;
margin-right: 10px;
}
.puntos {
align-self: flex-end;
z-index: 3;
}
.card-body {
display: flex;
justify-content: space-between;
z-index: 2;
}
.card-title {
font-size: 16px;
}
.card-body h5,
.card-body p {
margin: 0;
}
.card-body-item {
display: flex;
}
.card-body .phone {
margin-bottom: 20px;
font-size: 14px;
}
.datos {
display: flex;
font-size: 12px;
}
.datos div {
margin-right: 10px;
text-align: center;
}
.ranking {
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.ranking h4 {
margin: 0;
font-size: 14px;
}
.ranking p {
font-size: 12px;
}
.circulo {
position: absolute;
height: 220px;
width: 220px;
border-radius: 50%;
right: -120px;
bottom: -70px;
z-index: 1;
background: linear-gradient(to right, #80c1f2 0%, #7c9ef2 100%);
}
.nuevo {
background: linear-gradient(to right, #f4b367 0%, #ee9e5c 100%);
}
.medio {
background: linear-gradient(to right, #ed6895 0%, #e95772 100%);
}
.avanzado {
background: linear-gradient(to right, #cc79f2 0%, #977ff5 100%);
}
.pro {
background: linear-gradient(to right, #6ae7cf 0%, #68e1b8 100%);
}
.maestro {
background: linear-gradient(to right, #f8546f 0%, #fc0644 100%);
}