-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
116 lines (106 loc) · 1.73 KB
/
index.css
File metadata and controls
116 lines (106 loc) · 1.73 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'helvetica neue';
}
html,
body {
height: 100%;
width: 100%;
}
.parent{
min-height: 100vh;
width: 100%;
background-color: #111;
padding: 30px;
display: flex;
gap: 30px;
flex-wrap: wrap;
}
.card{
height: 330px;
width: 280px;
background-color: #fff;
border-radius: 30px;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.card .top{
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 30px;
}
.top img{
height: 42px;
width: 42px;
border-radius: 50%;
border: 1px solid #dadada;
padding: 3px;
object-fit: cover;
}
.top button{
display: flex;
align-items: center;
border: 1px solid #dadada;
padding: 3px 6px;
font-size: 10px;
border-radius: 5px;
gap: 3px;
background-color: transparent;
color: #8b8b8b;
}
.center h3{
font-size: 16px;
font-weight: 500;
}
.center h3 span{
font-size: 9px;
font-weight: 400;
color: #aeaeae;
}
.center h2{
font-size: 21px;
font-weight: 500;
}
.center .tag{
display: flex;
margin-top: 10px;
gap: 5px;
}
.center .tag h4{
font-size: 10px;
background-color: #e4e4e4;
color: #202020;
font-weight: 500;
padding: 4px 8px;
border-radius: 3px;
}
.bottom{
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1.5px solid #d7d7d7ce;
padding-top: 15px;
}
.bottom button{
background-color: rgb(18, 18, 18);
color: white;
padding: 7px 16px;
border: none;
border-radius: 5px;
font-size: 12px;
column-width: 600;
}
.bottom h3{
font-size: 17px;
font-weight: 500;
margin-bottom: 4px;
}
.bottom p{
font-size: 10px;
color: #8b8b8b;
}