-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtodotoday.less
78 lines (74 loc) · 1.04 KB
/
todotoday.less
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
/* CSS declarations go here */
.center {
text-align: center;
}
.todo-all, .todo-today {
width: 48%;
text-align: center;
}
.todo-all {
float: left;
}
.todo-today {
float: right;
}
.move-selected {
float: left;
position: relative;
height: 100%;
width: 20%;
text-align: center;
.arrows {
font-size: 2em;
a {
display: block;
}
a:hover {
color: green;
background: #eee;
text-decoration: none;
}
}
.inner {
vertical-align: middle;
}
}
.tasks {
position: relative;
.task-name {
width: 80%;
}
}
a [class^="icon-"]:before, [class*=" icon-"]:before {
cursor: pointer;
}
.glyphicon-ok {
color: green;
}
.glyphicon-remove {
color: red;
}
.footer {
margin-top: 20px;
text-align: center;
}
.task-name {
font-size: 1.6em;
line-height: 1.6em;
}
.task-day {
font-size: 1.2em;
line-height: 1.2em;
}
input.hide {
display: none;
}
/** bootstrap addon **/
.table tbody tr.info > th {
background-color: #d9edf7;
}
#edit-tasktime-form {
textarea {
height: 100px;
}
}