blob: 1af68866b8325a2d9ec2f38b578159eebc28a1b0 (
plain)
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
|
@import "../vendor/bootstrap/less/bootstrap";
@icon-font-path: "../vendor/bootstrap/fonts/";
body {
padding-top: 50px;
}
.footer a {
color: @text-muted;
}
#shifts {
td {
&.free {
border: 1px solid @gray-light;
.bg-danger();
}
&.occupied {
border: 1px solid @gray-light;
.bg-success();
}
&.collides {
border: 1px solid @gray-light;
.bg-warning();
}
&.own {
border: 1px solid @gray-light;
}
}
}
.space-top {
margin-top: 15px;
}
.messages {
&:focus {
outline: none;
}
a:focus {
outline: none;
}
}
|