-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththirdComponent.css
More file actions
90 lines (79 loc) · 1.87 KB
/
thirdComponent.css
File metadata and controls
90 lines (79 loc) · 1.87 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
@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: 80%;
height: auto;
margin: 1rem auto;
background-color: rgb(255, 255, 255);
display: flex;
flex-direction: row;
justify-content: start;
align-items: start;
}
.card {
width: 100%;
height: auto;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
border: 0.01rem solid rgb(133, 133, 133);
row-gap: 0.50rem;
}
.card1 {
width: 100%;
height: auto;
padding: 2rem;
border-top-left-radius: 0.80rem;
border-bottom-left-radius: 0.80rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
border: 0.01rem solid rgb(133, 133, 133);
row-gap: 0.50rem;
}
.card4 {
width: 100%;
height: auto;
padding: 2rem;
border-top-right-radius: 0.80rem;
border-bottom-right-radius: 0.80rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: start;
border: 0.01rem solid rgb(133, 133, 133);
row-gap: 0.50rem;
}
.revNum {
width: 100%;
height: auto;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-weight: 500;
color: rgb(101, 101, 101);
}
.num{
width: fit-content;
font-weight: 500;
font-size: 0.80rem;
}
.numRed{
width: fit-content;
font-size: 0.80rem;
font-weight: 500;
color: red;
}
.bigg {
font-weight: 600;
font-size: 1.5rem;
}