-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecondComponent.css
More file actions
58 lines (52 loc) · 1.26 KB
/
secondComponent.css
File metadata and controls
58 lines (52 loc) · 1.26 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
@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: 70%;
height: auto;
padding: 3rem;
margin: 1rem auto;
background-color: rgb(243 244 246);
display: flex;
flex-direction: column;
row-gap: 1.5rem;
}
.cardss {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
column-gap: 1.5rem;
}
.cards {
width: 100%;
height: auto;
background-color: rgb(255 255 255);
display: flex;
padding: 1.5rem;
border-radius: 0.5rem;
border: solid #e5e7eb;
flex-direction: column;
align-content: center;
border-width: 0.02rem;
}
.sub {
width: fit-content;
height: auto;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 500;
color: rgb(107 114 128);
}
.numb {
font-size: 1.875rem;
line-height: 2.25rem;
font-weight: 600;
letter-spacing: -0.025em;
margin-top: 0.25rem;
color: rgb(17 24 39);
}