-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.css
60 lines (53 loc) · 1.03 KB
/
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
55
56
57
58
59
60
body {
margin: 0;
background-color: #dde1fb;
background-image: url(assets/gear-small.svg), url(assets/gear-big.svg);
background-position: left 0px, right 0px;
background-repeat: no-repeat;
font-family: "Poppins", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
width: 70%;
margin: auto;
padding-bottom: 150px;
}
.title {
font-size: 63px;
font-weight: 800;
color: #5957c0;
}
#listContainer {
background-color: #f8f9ff;
}
.item.header {
background-color: #e3e7ff;
color: #b5bdff;
border: none;
height: 120px;
align-items: center;
padding: 0 0 0 70px;
}
.item {
display: flex;
justify-content: space-between;
padding: 44px 200px 23px 70px;
font-size: 40px;
font-weight: 500;
border-bottom: 3px solid #d5d7fa;
color: #434387;
text-align: left;
}
.addItemImg {
padding-right: 15px;
}
.stormy-sparky {
position: fixed;
bottom: 20px;
right: 20px;
}