-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasklist.css
99 lines (85 loc) · 1.39 KB
/
tasklist.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
* {
margin: 0;
padding: 0;
font-family: 'Cutive Mono';
}
body {
background-color: rgb(204,254,254);
}
.header , .footer {
height : 100px;
width : 100%;
text-align: center;
}
nav li {
display : inline-block;
list-style: none;
margin : 10px;
cursor : pointer;
}
button {
margin : 2px;
padding : 2px;
float : right;
cursor: pointer;
margin: -3px 2px 2px;
}
.row {
padding: 10px 10px;
margin : 5px auto;
clear : both;
}
.task.row {
cursor: pointer;
}
.milestone.row:before {
content: "☢ ";
}
#data-container {
margin : 5px auto;
width : 80%;
}
.task-name {
font-weight: bold;
}
#show-add-task-button {
display: block;
float: none;
font-weight: bold;
margin: auto;
font-size: 1.2em;
}
.show-milestone-form-button {
font-weight : bold;
}
#add-task-form {
position : fixed;
top : 100px;
width : 300px;
padding : 20px;
background-color: rgb(250,250,250);
left : calc(50% - 100px);
text-align: center;
}
#add-task-form button {
float : none;
}
/* colors */
.green {
background-color : rgb(150, 250, 150);
}
.light-blue {
background-color : rgb(170, 220, 250);
}
.blue {
background-color : rgb(150, 150, 250);
}
.orange {
background-color : rgb(250, 180, 120);
}
.red {
background-color : rgb(250, 10, 10);
}
.gold {
background-color: gold;
}