-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (81 loc) · 1.17 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
.auth {
position: absolute;
right: 0;
top: 0;
}
ol.cards {
list-style: none;
}
.card {
display: inline-block;
position: relative;
width: 12em;
height: 8em;
margin-bottom: 1em;
border: 1px solid silver;
}
.card * {
margin: 0;
}
.card input, .card select {
background-color: inherit;
border-style: dotted;
border-width: 1px;
}
.card .todo {
position: absolute;
bottom: 0;
right: 0;
width: 2em;
background-color: inherit;
border-style: dotted;
border-width: 1px;
text-align: right;
}
.card .user {
position: absolute;
bottom: 0;
}
/* Card type translates to background color */
.type-task {
background-color: #F7F7BE;
}
.type-bug {
background-color: #FAA475;
}
.type-extra {
background-color: #89FA92;
}
.type-other {
background-color: #FA89F1;
}
/* */
table.board .state {
width: 12em;
padding: 1em;
border: 1px dotted silver;
}
table.board th.state {
padding: 0em 1em;
text-transform: capitalize;
}
table.board th.state .add-card {
float: right;
}
.card .edit-card {
float: right;
padding-left: 2px;
cursor: pointer;
}
.card button {
position: absolute;
bottom: 0;
right: 0;
}
.draghandle {
float: right;
}
label {
float: left;
clear: both;
}