-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
76 lines (63 loc) · 1.08 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
html {
background: #222;
color: #FFF;
}
.board {
display: flex;
justify-content: center;
margin-top: 50px;
}
.card {
background: #3F4447;
padding: 10px;
margin-bottom: 10px;
border-radius: 3px;
cursor: pointer;
width: 150px;
height: 60px;
cursor: grab;
transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.card:active {
cursor: grabbing;
}
.card.dragging {
opacity: .5;
transform: scale(.8);
}
.column {
padding: 10px;
background: #2c2c2c;
border: 2px solid #2c2c2c;
transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.column.column-todo h2 {
background: #3498DB;
}
.column.column-ip h2 {
background: #F39C12;
}
.column.column-ip {
margin: 0 20px;
}
.column.drop {
border: 2px dashed #FFF;
}
.column.drop article {
pointer-events: none;
}
h3 {
font-size: 21px;
font-family: Helvetica;
margin: 0;
}
.card:last-child {
margin-bottom: 0;
}
h2 {
background: green;
margin: -10px -10px 10px;
padding: 4px 10px;
font-family: Helvetica;
font-size: 21px;
}