-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
54 lines (45 loc) · 759 Bytes
/
main.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
a {
text-decoration: none;
cursor: pointer;
color: #fff;
}
i {
font-size: 30px;
}
.container {
width: 350px;
min-height: 120px;
background-color: #333;
color: #fff;
}
.header {
display: flex;
justify-content: flex-start;
align-items: center;
border-bottom: 1px solid #fff;
}
.header img {
width: 30px;
margin-left: 50px;
}
.content {
margin-top: 20px;
display: flex;
justify-content: space-between;
padding: 0 20px;
}
i:hover {
color: lightblue;
}
h2{
margin-left: 50px;
font-size: 16px;
margin-top: 15px;
}