-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (65 loc) · 1.16 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
72
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
font-family: 'Work Sans', sans-serif;
font-weight: bolder;
background-color: #16b2a9;
background-image: url("img/Background_image.jpg");
background-repeat: no-repeat;
background-size: cover;
}
#todo_list {
width: 1000px;
text-align: center;
margin-top: 13vh;
}
#todo_list > h2 {
font-size: 38px;
letter-spacing: 0.4px;
margin-bottom: 30px;
}
#add_input {
border-radius: 7px 7px;
border: none;
outline: none;
height: 40px;
width: 40%;
padding-left: 20px;
margin-bottom: 30px;
}
#items_list {
list-style-type: none;
justify-content: center;
flex-direction: column;
display: flex;
}
li.items {
border-radius: 7px 7px;
font-size: 20px;
background: #f0f0e6;
opacity: 0.8;
padding: 10px;
width: 40%;
margin: 0 auto;
margin-bottom: 15px;
font-weight: bold;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.del_btn {
width: auto;
padding: 4px 6px;
background: #dd4e4e;
color: #fff;
font-weight: bold;
cursor: pointer;
outline: none;
border: none;
border-radius: 5px;
}