-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (68 loc) · 1.03 KB
/
style.css
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
*{
padding: 0;
margin: 0;
}
.hl-color{
color: #06FEFC;
}
body{
background: #0D1A2D;
}
.parent{
width: 100vw;
height: 100vh;
display: grid;
place-items: center;
}
.child{
margin: 20px;
width: 290px;
background: #15273F;
box-shadow: 0px 0px 10px 5px #0C1729;
border-radius: 10px;
}
.card{
padding: 16px;
}
.info h3{
color: #F1F9FD;
margin: 10px 0;
}
.info p{
color: #6C81A0;
}
.user img{
width: 100%;
border-radius: 4px;
}
.icons{
display: flex;
justify-content: space-between;
align-items: center;
padding: 13px 0;
color: #6C81A0;
border-bottom: 1px solid #1D2F47;
}
.icon{
display: flex;
align-items: center;
justify-content: space-between
}
.icon img{
padding-right: 5px;
width: 15px;
}
.avatar{
display: flex;
align-items: center;
margin: 10px 0;
font-weight: bold;
font-size: 12px;
}
.avatar img{
width: 25px;
height: 25px;
margin-right: 15px;
border: 1px solid #ccc;
border-radius: 50%;
}