-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
153 lines (151 loc) · 2.8 KB
/
index.css
File metadata and controls
153 lines (151 loc) · 2.8 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
padding: 0px;
margin: 0px;
font-family: 'Poppins';
}
body{
width: 100%;
height: 60vh;
max-height: 100vh;
box-sizing: border-box;
}
.main{
width: 100%;
height: 60vh;
display: flex;
align-items: center;
flex-direction: column;
min-width: 200px;
max-height: 100vh;
}
.head{
color: rgb(96, 95, 95);
font-weight: 400;
margin-top: 20px;
}
.head2{
font-weight: 500;
font-size: 25px;
}
.our{
display: flex;
flex-direction: column;
align-items: center;
color: rgb(176, 173, 173);
padding: 20px 10px;
font-size: 15px;
}
span{
display: block;
}
.divs{
display: flex;
flex-wrap: wrap;
justify-items: center;
align-items: center;
text-wrap-style:balance;
gap: 30px;
padding-top: 20px;
min-width: 200px;
margin: 10px;
}
.super{
width: 290px;
height: 150px;
border-top: 3px solid cyan;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
padding: 30px;
border-radius: 6px;
}
.super h3{
font-weight: 600;
}
.super p{
color: rgb(159, 158, 158);
font-size: 14px;
padding-top: 10px;
}
.super img{
display: grid;
justify-self: end;
padding-top: 20px;
width: 70px;
height: 70px;
}
.combine{
display: flex;
flex-direction: column;
gap: 20px;
}
.team{
width: 290px;
height: 150px;
border-top: 3px solid rgb(235, 6, 6);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
padding: 30px;
border-radius: 6px;
}
.team h3{
font-weight: 600;
}
.team p{
color: rgb(159, 158, 158);
font-size: 14px;
padding-top: 10px;
}
.team img{
display: grid;
justify-self: end;
padding-top: 20px;
width: 70px;
height: 70px;
}
.karma{
width: 290px;
height: 150px;
border-top: 3px solid orange;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
padding: 30px;
border-radius: 6px;
}
.karma h3{
font-weight: 600;
}
.karma p{
color: rgb(159, 158, 158);
font-size: 14px;
padding-top: 10px;
}
.karma img{
display: grid;
justify-self: end;
padding-top: 15px;
width: 70px;
height: 70px;
margin-bottom: 10px;
}
.calculator{
width: 290px;
height: 150px;
border-top: 3px solid blue;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
padding: 30px;
border-radius: 6px;
margin-bottom: 10px;
}
.calculator h3{
font-weight: 600;
}
.calculator p{
color: rgb(159, 158, 158);
font-size: 14px;
padding-top: 10px;
}
.calculator img{
display: grid;
justify-self: end;
padding-top: 20px;
width: 70px;
height: 70px;
}