-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
82 lines (68 loc) · 1.17 KB
/
stylesheet.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
body {
font-family: 'Roboto',sans-serif;
font-size: 14px;
color: #222;
}
.board-wrapper {
float: left;
width: 100%;
position: relative;
}
.column {
float: left;
width: 33%;
padding: 5px 2px;
}
.column .item {
margin: 10px 0;
padding: 5px 10px;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
.column.good .item {
background: rgba(0, 200, 0, 0.5);
}
.column.bad .item {
background: rgba(200, 0, 0, 0.5);
}
.column.actions .item {
background: rgba(100, 0, 100, 0.5);
}
.badge {
position: absolute;
right: 0;
bottom: 0;
}
.badge img {
max-width: 190px;
float: left;
}
.title {
float: left;
width: 100%;
padding: 5px 0;
font-weight: bold;
background: black;
color: white;
}
button.add {
font-size: 18px;
border: 0;
border-radius: 0;
cursor: pointer;
}
.swatch {
float: left;
width: 16px;
height: 16px;
border-radius: 5px;
margin: 1px 10px 0 0;
}
.good .swatch {
background: rgba(0, 200, 0, 0.5);
}
.bad .swatch {
background: rgba(200, 0, 0, 0.5);
}
.actions .swatch {
background: rgba(100, 0, 100, 0.5);
}