-
Notifications
You must be signed in to change notification settings - Fork 24
/
style.css
82 lines (66 loc) · 1.03 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
html {
font-family: 'Nunito';
}
body {
background-color: #130f0d;
color: white;
}
.boards {
display: flex;
margin-top: 32px;
}
.board {
background: #141316;
border: 1px solid #FD951F11;
border-radius: 4px;
margin: 0 16px;
}
.board h3 {
padding: 16px;
margin: 0;
color: #FD951Fcc;
}
.dropzone {
padding: 16px;
min-width: 282px;
min-height: 200px;
}
.card {
background-color: #1A1A1C;
padding: 16px;
box-shadow: 0 2px 2px -1px #FD951Fcc;
width: 250px;
margin: 25px 0;
border-radius: 4px;
font-weight: 600;
font-size: 18px;
}
.status {
width: 30px;
height: 8px;
background: gray;
margin-bottom: 16px;
border-radius: 8px;
}
.status.green {
background: #23d2ac;
}
.status.blue {
background: #33adff;
}
.status.red {
background: red;
}
.highlight {
background-color: #FD951F08;
}
.card, .dropzone {
transition: 400ms;
}
.is-dragging {
cursor: move;
opacity: 0.3;
}
.over {
background-color: #4cd13711;
}