-
Notifications
You must be signed in to change notification settings - Fork 15
/
style.css
157 lines (136 loc) · 3.03 KB
/
style.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
.amount {
color: darkgray;
padding-left: 3px;
}
.amount:before {
content: '('
}
.amount:after {
content: ')'
}
#board {
margin: 1em;
/*background: #EBECF0;*/
/*border-radius: 10px;*/
/*border: 10px solid #adb2bd;*/
/*box-shadow: inset -1px 2px 2px #404040, 4px 4px 4px rgba(0, 0, 0, 0.1);*/
/*min-height: 600px;*/
}
#board ul {
list-style: none;
padding: 0;
}
#board .col {
background: #EBECF0;
border-top: 10px solid #adb2bd;
border-bottom: 10px solid #adb2bd;
/*box-shadow: inset 0px 0px 2px 2px #404040, 4px 4px 4px rgba(0, 0, 0, 0.1);*/
}
#board .col.todo {
border-left: 10px solid #adb2bd;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
box-shadow: inset 0px 2px 2px #404040, inset 2px 0px 2px #404040;
}
#board .col.work {
border-left: 2px solid black;
box-shadow: inset 0px 2px 2px #404040;
}
#board .col.queue {
border-left: 1px dashed grey;
box-shadow: inset 0px 2px 2px #404040;
}
#board .col.done {
border-left: 2px solid black;
border-right: 10px solid #adb2bd;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
box-shadow: inset 0px 2px 2px #404040;
}
.post-it {
/*position: relative;*/
background: #feff9c;
box-shadow: 1px 1px 2px 1px rgba(9, 30, 66, .25);
border-radius: 3px;
width: 40px;
height: 40px;
padding: 10px;
margin: 10px;
/* undo bootstrap reboot */
box-sizing: content-box;
}
/*.todo .post-it,*/
/*.done .post-it,*/
.queue .post-it{
margin-top: -45px;
}
.queue .post-it:nth-child(1000n+1){
margin-top: 0;
}
.todo .post-it:nth-child(4n+1),
.queue .post-it:nth-child(4n+1){
transform: rotate(0deg);
}
.todo .post-it:nth-child(4n+2),
.queue .post-it:nth-child(4n+2){
transform: rotate(2deg);
}
.todo .post-it:nth-child(4n+3),
.queue .post-it:nth-child(4n+3){
transform: rotate(-2deg);
}
.todo .post-it:nth-child(4n+4),
.done .post-it:nth-child(4n+4),
.queue .post-it:nth-child(4n+4){
transform: rotate(4deg);
}
.done .post-it:nth-child(5n+1){
z-index: 10;
}
.done .post-it:nth-child(5n+2){
transform: rotate(2deg);
margin-top: -65px;
z-index: 9;
}
.done .post-it:nth-child(5n+3){
transform: rotate(-2deg);
margin-top: -65px;
z-index: 8;
}
.done .post-it:nth-child(5n+4){
transform: rotate(4deg);
margin-top: -65px;
z-index: 7;
}
.done .post-it:nth-child(5n+5){
transform: rotate(-4deg);
margin-top: -65px;
z-index: 6;
}
.scenario {
list-style: none;
padding: 0;
width: 12%
}
#throughput, #leadtime, #wip {
font-weight: bold;
}
.throughput {
background-color: rgba(54, 162, 235, 0.1);
border: rgb(54, 162, 235) solid 1px;
}
.leadtime {
background-color: rgba(255, 99, 132, 0.1);
border: rgb(255, 99, 132) solid 1px;
}
.wip {
background-color: rgba(255, 206, 86, 0.1);
border: rgb(255, 206, 86) solid 1px;
}
.timeWorked {
background-color: rgba(211, 211, 211, 0.1);
border: rgb(211, 211, 211) solid 1px;
}
.chart {
border: 1px solid lightgray;
}