-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirstComponent.css
More file actions
138 lines (119 loc) · 2.52 KB
/
firstComponent.css
File metadata and controls
138 lines (119 loc) · 2.52 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", serif;
}
.container {
width: 100%;
height: auto;
margin: 2rem auto;
padding: 3rem;
background-color: rgb(243 244 246);
border-radius: 1.5rem;
border: solid #e5e7eb;
display: flex;
flex-direction: column;
}
.cards {
width: 100%;
height: auto;
display: flex;
padding: 1rem;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.card1, .card2, .card3 {
background-color: white;
width: 33%;
height: auto;
padding: 2rem;
border: 0.01rem solid #e5e7eb;
}
.card1 {
width: 33%;
height: auto;
border-top-left-radius: 1rem;
border-bottom-left-radius: 1rem;
}
.card3 {
width: 33%;
border-top-right-radius: 1rem;
border-bottom-right-radius: 1rem;
}
.big p {
color: rgb(79 70 229);
font-weight: 800;
font-size: 1.5rem;
}
.figures {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
}
.bigSmall {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
justify-content: start;
align-content: start;
column-gap: 0.5rem;
padding-right: 3rem;
}
.small p {
width: fit-content;
padding-top: 0.7rem;
color: rgb(107 114 128);
font-size: 0.9rem;
}
.percent {
width: fit-content;
height: auto;
background-color: rgb(220 252 231);
padding: 0.5rem;
border-radius: 2rem;
display: flex;
flex-direction: row;
justify-content: start;
align-content: center;
column-gap: 0.3rem;
}
.icon {
width: 1rem;
stroke-width: 3rem;
padding-top: 0.1rem;
}
.icons {
color: rgb(239 68 68);
width: 1rem;
stroke-width: 3rem;
padding-top: 0.1rem;
}
.percents {
width: fit-content;
height: auto;
background-color: rgb(254 226 226);
padding: 0.5rem;
border-radius: 2rem;
display: flex;
flex-direction: row;
justify-content: start;
align-content: center;
column-gap: 0.3rem;
}
.percentNumber {
color: rgb(22 101 52);
}
.percentNumbers {
color: rgb(153 27 27);
}
.days p {
padding-left: 1rem;
font-weight: 500;
}