-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.css
90 lines (73 loc) · 1.74 KB
/
app.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
.nav, .pagination, .carousel, .panel-title a, a[ng-click] {
cursor: pointer;
}
.splash {
text-align: center;
margin: 10% 0 0 0;
box-sizing: border-box;
}
.splash .message {
font-size: 38px;
line-height: 38px;
text-shadow: rgba(0, 0, 0, 0.5) 0 0 15px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.splash .fa-spinner {
text-align: center;
display: inline-block;
font-size: 38px;
margin-top: 10px;
}
.main-bar {
background-color: #337ab7;
}
.navbar-inverse .navbar-nav > li > a, .navbar-default .navbar-brand {
color: #eee;
}
.sprint, .backlog, .completed, .board .lane {
margin: 0 15px 15px 15px;
padding: 6px;
}
.sprint, .backlog, .completed {
width: calc(100% - 30px);
}
.sprint, .backlog, .board .lane {
min-height: 50px;
background-color: #ddd;
border: 1px solid #e7e7e7;
}
.sprint-actions {
margin: 0 0 15px 15px;
}
.board {
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
}
.board .lane-title {
font-weight: bold;
text-align: center;
}
.sprint.over, .backlog.over, .board .lane .task-container.over {
background-color: #5cb85c;
}
.board .lane .task-container, .board .lane .task, .sprint .task, .backlog .task, .completed .task {
background-color: white;
height: 50px;
}
.board .lane .task, .sprint .task, .backlog .task, .completed .task {
padding: 6px;
border: 1px solid #999;
color: #777;
overflow: hidden;
}
.board .lane .task-container, .sprint .task, .backlog .task, .completed .task {
margin: 6px;
background-color: white;
}
.board .lane .task-container {
background-color: #f5f5f5;
}
.board .lane .task:hover, .sprint .task:hover, .backlog .task:hover {
cursor: move;
}