-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (53 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
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@100;200;300;400;700&display=swap');
body{
font-family: 'Epilogue', sans-serif;
background-color: #111111;
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
#add{
background-color: #0000EE;
color: white;
cursor: pointer;
border-radius: 2px;
border: 0px;
padding: 10px 20px;
font-weight: 300;
font-size: 16px;
}
.remove {
color: white;
text-align: center;
align-items: center;
justify-content: center;
background-color: #8b05f2;
cursor: pointer;
border: 0;
padding: 10px 30px;
float: right;
clear: both;
border-radius: 5px;
}
ul {
align-items: center;
justify-content: space-between;
margin-top: 30px;
list-style: none;
text-align: left;
line-height: 35px;
}
li {
margin: 10px 0px;
}
#task{
border: 0px;
border-radius: 2px;
height: 36px;
width: 300px;
}
#wrapper{
margin-top: 120px;
}