-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.css
100 lines (78 loc) · 1.26 KB
/
todo.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
@font-face {
font-family: 'CovesLight';
src: url("fonts/CovesLight.otf"); /* File to be stored at your site */
}
@font-face {
font-family: 'CovesBold';
src: url("fonts/CovesBold.otf"); /* File to be stored at your site */
}
*{
font-family:"CovesLight";
}
body {
font-family: 'CovesLight';
padding-left: 16px;
/* background: #EFEFEF !important;*/
}
input {
border: none;
border-bottom: 1px solid black;
}
input:focus {
outline: none;
}
#header {
text-align: center;
font-family: 'CovesBold';
}
#todo-list {
}
#incomplete > * {
margin-left: 16px;
padding: 8px;
}
#incompleteStyle {
margin-right: 16px;
background-color: #D7CEC7;
}
#complete {
margin-right: 16px;
background-color: #D7CEC7;
}
.task {
padding-bottom: 8px;
}
.task .title {
font-size: 34px;
font-weight: bold;
}
.task-info {
}
#completed-header {
text-align: center;
font-family: 'CovesBold';
}
.subtasks {
margin-left: 32px;
}
.subtasks > * {
padding: 4px;
}
.subtask .title {
font-size: 20px;
font-weight: bold;
}
.time-input {
width: 60px;
}
#addNew {
background-color: transparent;
border: 1px dashed #FFFFFF; /* Green */
margin-left: 15px;
height: 35px;
}
.center {
margin: auto;
width: 80%;
padding: 10px;
}