-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (73 loc) · 1.44 KB
/
styles.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
95
96
97
98
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
box-sizing: border-box;
}
body {
margin: 0;
display: flex;
padding-top: 5rem;
justify-content: center;
overflow: hidden;
font-family: "Roboto", sans-serif;
background-color: #e5e5e5;
}
.row {
width: 600px;
margin-bottom: 1rem;
display: flex;
justify-content: space-between;
}
.col-header {
width: 150px;
padding: 0.8rem 1rem;
border-radius: 20px;
text-align: center;
color: #fff;
box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
}
.item {
width: 150px;
height: 66px;
padding: 0.8rem 1rem;
border: 1px solid #eee;
border-radius: 20px;
cursor: grab;
text-align: center;
color: #828282;
background: #f7f6f7;
box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
transition: color 250ms ease-in-out, border-color 250ms ease-in-out;
}
.item:hover {
color: #03fd03;
border-color: #03fd03;
}
.item:active {
cursor: grabbing;
}
.placeholder {
width: 150px;
height: 66px;
}
.start {
background: linear-gradient(90deg, #ff85e4 0%, #229efd 179.25%);
}
.progress {
background: linear-gradient(90deg, #209cff 0%, #68e0cf 100%);
}
.done {
background: linear-gradient(90deg, #84fab0 0%, #8fd3f4 100%);
}
.hold {
border: 2px solid #008500;
color: #00b100;
background-color: #4e4c4c;
}
.hide {
display: none;
}
.hovered {
border: 2px solid #03fd03;
border-radius: 20px;
background-color: #bdbdbd;
}