-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
85 lines (71 loc) · 1.62 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
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
background-color: #e5e5e5;
display: flex;
padding-top: 5rem;
justify-content: center;
overflow: hidden;
margin: 0;
}
.row {
display: flex;
width: 600px;
justify-content: space-between;
margin-bottom: 1rem;
}
.col-header {
width: 150px;
box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
border-radius: 20px;
padding: 0.8rem 1rem;
color: #fff;
}
.item {
width: 150px;
height: 66px;
border: 1px solid #eee;
box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
border-radius: 20px;
background: #f7f6f7;
padding: 0.8rem 1rem;
color: #828282;
text-align: center;
cursor: grab;
}
.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{
background: linear-gradient(30deg, cyan 0%, lawngreen 100%);
border: 3px solid lightseagreen;
box-shadow: 1px 1px 5px midnightblue, 2px 3px 5px midnightblue inset;
text-shadow: 0 0 2px mediumblue, -1px -1px 0 white, -3px -3px 1px white;
color: midnightblue;
}
.hide{
display: none;
}
.hovered{
border: 3px solid lightgoldenrodyellow;
background-color: lawngreen;
box-shadow: 5px 5px 10px cyan, -5px 10px 15px yellow, 10px -5px 10px gold,
-10px -5px 10px gold, 10px -5px 10px cyan, 0 -5px 10px gold;
border-radius: 24px;
}