-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (62 loc) · 1.46 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
body {
padding: 100px; }
#wrapper {
background-color: white;
display: inline-block;
position: absolute; }
#wrapper > table {
border: 1px solid #4DABE4;
border-spacing: 2px;
background-color: white;
table-layout: fixed;
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab; }
#wrapper > table.dragging {
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing; }
#wrapper > table td {
padding: 1px;
min-width: 50px;
max-width: 50px;
height: 50px;
background-color: #4DABE4; }
.btn {
display: flex;
width: 52px;
height: 52px;
align-items: center;
justify-content: center;
transition: all 0.6s ease;
color: white;
font-size: 1.8em;
font-weight: bold;
cursor: pointer; }
.btn-add {
background-color: #F1A417; }
.btn-add__col {
position: absolute;
top: 3px;
right: -54px; }
.btn-add__row {
position: absolute;
top: calc(100% + 2px);
left: 3px; }
.btn-add:hover {
background-color: #F5BF5C; }
.btn-remove {
background-color: #B00100; }
.btn-remove__col {
position: absolute;
top: -54px;
left: 3px;
opacity: 0; }
.btn-remove__row {
position: absolute;
top: 3px;
left: -54px;
opacity: 0; }
.btn-remove:hover {
background-color: #C84D4C; }
/*# sourceMappingURL=style.css.map */