-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.less
125 lines (119 loc) · 1.77 KB
/
style.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@description-width: 320;
.rounded-corners (@radius: 5px) {
border-radius: @radius;
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
}
*, body {
margin:0;
padding:0;
}
input {
border:0px;
}
input.title{
width: 300px;
}
input.description {
width: @description-width*1px;
}
input.optimus, input.nominal, input.worst {
width:40px;
}
div.newtask {
text-align:center;
font-size:11px;
}
ul {
list-style:none;
li.header {
font-size:11px;
}
}
span.O {
margin-left: (@description-width + 60)*1px;
}
span.N, span.P {
padding-left:30px;
}
div.right, div.left {
width:15%;
height:100%;
float:left;
}
div.content {
min-width: 600px;
float:left;
margin-top:20px;
.rounded-corners(20px);
}
div.summary {
color:orange;
font-size:22px;
float:right;
font-weight:bold;
text-align:center;
width:180px;
height:70px;
margin-right:40px;
}
.content {
background-color: lightgreen;
div.tasks {
margin-top:10px;
padding-left:20px;
.sum {
padding: 0 10px 0 10px;
}
}
h1 {
margin-top:10px;
padding-left:30px;
padding-bottom:30px;
}
div.lower {
padding-top:25px;
}
}
input.error {
color:red;
}
div.explanation {
font-size:11px;
p {
margin-left:-68px;
padding-top:40px;
text-align:center;
}
}
div.catcher {
font-size:11px;
cursor:pointer;
}
div.sum {
margin-left:5px;
}
div.tasks ul {
padding-left:50px;
}
img.delete, img.add {
cursor:pointer;
}
img.download {
cursor:pointer;
float:right;
margin-right:50px;
}
img.clear {
cursor:pointer;
padding-left:50px;
}
.tooltip {
display:none;
background-color:#ffffaa;
border:1px solid #cccc99;
padding:3px;
font-size:13px;
-moz-box-shadow:2px 2px 11px #666666;
-webkit-box-shadow:2px 2px 11px #666666;
}