-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
109 lines (87 loc) · 1.16 KB
/
index.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
body {
/*background-color: #131339;*/
/*color: white;*/
}
.header {
height:5em;
padding-top: .5em;
padding-bottom: .5em;
}
#title {
background-color: #262673;
height: 100%;
width: 30%;
text-align: center;
color: white;
margin: 0 auto;
}
.row {
margin-top: 1em;
margin-bottom: 1em;
}
.task-sec {
margin-bottom: 10em;
}
#tasks {
width: 80%;
table-layout: fixed;
margin: 0 auto;
}
#completed {
width: 80%;
table-layout: fixed;
margin: 0 auto;
}
tr {
text-align: center;
}
.spacer {
height: .5em;
}
.task-options-col {
width: 10%;
}
.task-col {
width: 45%;
}
.timespent-col {
width: 45%;
}
.task {
margin-bottom: 0;
}
.timespent-wrapper {
margin-left: 3em;
}
.btn {
margin-right: .25em;
margin-left: .25em;
}
#add-task-btn {
margin: 0;
position: absolute;
top: 85%;
-ms-transform: translateY(-85%);
transform: translateY(-85%);
}
.new-task-input {
border: 1px solid #ccc;
outline: none;
width: 20em;
}
.tasks-header {
display: inline;
margin-right: .5em;
}
.close {
cursor: pointer;
display: inline;
}
.selected td:nth-child(2) {
background: #888;
color: #fff;
}
.selected td:nth-child(3) {
background: #888;
color: #fff;
}