-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoDoListStyles.css
More file actions
100 lines (85 loc) · 1.37 KB
/
toDoListStyles.css
File metadata and controls
100 lines (85 loc) · 1.37 KB
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
body {
background-color: #DFDFDF;
}
li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0;
margin: 0;
padding: 16px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
background: #fff;
}
ul {
text-align: left;
padding: 0;
margin: 0;
margin-top: 5%;
}
h1 {
font-size: 72px;
line-height: 50px;
font-family: Arial, Helvetica, sans-serif, Geneva, sans-serif;
font-weight: bold;
color: #ffffff;
text-shadow: 3px 3px 5px #A64DFF, 6px 6px 5px #FF8000, 9px 9px 5px #6DD900;
}
.item-description {
width: 80%;
display: inline-block;
margin-right: 15px;
}
.add-button {
display: inline;
width: 20%;
}
.container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0;
margin: 0;
width: 100%;
max-width: 560px;
margin: 0 auto;
}
.description {
width: 80%;
}
.title-container {
padding-top: 30px;
width: 100%
}
.todolist-container {
width: 100%;
padding-top: 60px;
text-align: center;
}
.todolist {
width: 100%;
max-width: 900px;
text-align: center;
margin: 0 auto;
display: block;
}
.items-container {
text-align: center;
width: 100%;
max-width: 560px;
text-align: center;
margin: 0 auto;
}
.actions {
width: 20%;
}
.item {
text-align: left;
}
.item-selected {
text-decoration: line-through;
color: red
}
.delete-button {
margin-left: 30px;
}