-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (60 loc) · 1014 Bytes
/
style.css
File metadata and controls
72 lines (60 loc) · 1014 Bytes
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
.markup {
margin: 150px;
position: relative;
width: max-content;
}
.markupTable {
outline: 2px solid #47a9e6;
}
.tableCube {
background: #47a9e6;
width: 78px;
height: 78px;
}
.buttonDelete {
background: #b20000;
border: 2px solid #b20000;
margin: 0 5px 5px 0;
display: none;
line-height:75px;
transition-duration: 0.4s;
}
.buttonDelete:hover {
cursor: pointer;
font-size: 30px;
background-color:#CD5C5C;
border: 2px solid #CD5C5C;
}
.buttonAdd {
background: #FF8C00;
border: 2px solid #FF8C00;
transition-duration: 0.4s;
}
.buttonAdd:hover {
background-color: #f2a400;
border: 2px solid #f2a400;
cursor: pointer;
}
.buttonCube {
width: 78px;
height: 78px;
position: absolute;
color: white;
line-height:75px;
font-size: 25px;
text-align: -webkit-center;
}
.buttonAdd.buttonRow {
top: 100%;
margin-top:5px;
}
.buttonDelete.buttonRow {
right: 100%;
}
.buttonDelete.buttonColumn {
bottom: 100%;
}
.buttonAdd.buttonColumn {
left: 100%;
margin-left:5px;
}