-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (97 loc) · 1.95 KB
/
styles.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body{
margin: 0 auto;
width: 50%;
font-family: 'Barlow', sans-serif;
background-color: #2B2B2B;
}
#heading {
font-family: 'Dancing Script', cursive;
text-align: center;
color: #F0A500;
}
.input-form{
text-align: center;
}
.todo-list-container{
margin: 50px 0;
}
.completed-tasks-list-container{
margin: 50px 0;
}
ul li{
margin: 10px 0;
font-size: 25px;
color: white;
}
ul{
list-style: none;
}
.todo-list-container ul li::before{
content: "\29BF";
color: #F0A500;
/* font-weight: bold; */
display: inline-block;
width: 1em;
margin-left: -1em;
margin-right: 5px;
}
.completed-tasks-list-container ul li::before{
content: "🗸";
color: #F0A500;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
#new_task {
height: 20px;
width: 50%;
/* border-radius: 5px; */
border-top: 0;
border-right: 0;
border-left: 0;
border-bottom: 1px solid #F0A500;
background-color: #2B2B2B;
color: #F0A500;
}
#new_task:focus{
outline: none;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #F0A500;
}
#add_button{
background-color: #2B2B2B;
color: #F0A500;
border: 2px solid #F0A500;
border-radius: 50%;
font-size: 20px;
}
.todo-list-container h2{
color: #F0A500;
}
.completed-tasks-list-container h2{
color: #F0A500;
}
.todo-list button{
background-color: #2B2B2B;
color: #F0A500;
border: none;
/* border: 2px solid #F0A500; */
/* border-radius: 50%; */
font-size: 20px;
margin: 0 5px;
}
.todo-list button:nth-child(1){
margin-left: 20px;
}
.save-button-container{
text-align: right;
}
.save-button{
background-color: #2B2B2B;
color: #F0A500;
border: 2px solid #F0A500;
border-radius: 5px;
font-size: 20px;
}