-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (55 loc) · 1.02 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
body {
background-color: #333;
color: white;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
width: 300px;
}
.task-input {
margin-bottom: 10px;
}
input {
padding: 8px;
width: 200px;
}
button {
padding: 8px;
background-color: #00A86B;
color: white;
border: none;
cursor: pointer;
}
ul {
list-style-type: none;
align-items: center;
padding: 0;
}
li {
display: flex;
align-items: center;
justify-content: center;
background: #555;
padding: 8px;
margin: 5px 0;
border-radius: 5px;
color: white;
font-size: 20px;
}
li input[type="checkbox"] {
margin-right: 0px;
flex-shrink: 0;
}
li span {
flex-grow: 1;
margin: 0;
padding: 0;
text-align: center;
font-size: 20px;
}