-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
64 lines (64 loc) · 1.02 KB
/
main.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
.st{
display: inline-block;
position: relative;
margin: 52px;
}
.st__table{
border: 1px solid #48aae6;
}
.st__cell{
background-color: #48aae6;
padding: 0;
width: 50px;
height: 50px;
}
.st__btn {
color: white;
height: 50px;
width: 50px;
opacity: 1;
border: 0;
cursor: pointer;
position: absolute;
}
.st__btn:hover{
transition:all 0.3s ease;
opacity: 0.5;
}
.st__btn-add{
background-color: #f3a500;
}
.st__btn-add::before{
font-size: 20px;
font-weight: 600;
content: '+';
}
.st__btn-del{
transition:all 0.3s ease;
background-color: #b20000;
}
.st__btn-del::before{
content: '-';
font-size: 20px;
font-weight: 600;
}
.st__btn_position-left{
right: 100%;
margin-top: 3px;
margin-right: 2px;
}
.st__btn_position-top{
bottom: 100%;
margin-left: 3px;
margin-bottom: 2px;
}
.st__btn_position-right{
left: 100%;
top: 3px;
margin-left: 2px;
}
.st__btn_position-bottom{
top: 100%;
left: 3px;
margin-top: 2px;
}