summaryrefslogtreecommitdiff
path: root/themes/base.less
blob: 6832fb1ad72f59de4ab38245d964765e533cd45a (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
@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;
}