-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
53 lines (52 loc) · 874 Bytes
/
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
/* CSS BY MOPDOBOPOT */
BODY {
margin: 0;
padding: 0;
overflow: hidden;
}
#menuWrapper {
position: fixed;
bottom: 70px;
left: 0;
right: 0;
height: 0;
text-align: center;
}
#menuWrapper #menu {
display: inline-block;
width: 160px;
height: 30px;
padding-top: 10px;
background: #E8E8E8;
border-radius: 4px 4px 4px 4px;
}
#menu {
font-size: 20px;
opacity: .3;
transition: opacity .4s ease;
cursor: default;
}
#menu i {
width: 16px;
margin-left: 6px;
cursor: pointer;
}
#menu:hover {
opacity: .7;
transition: opacity .4s ease;
}
.infoBlock {
display: inline-block;
font-size: 13px;
cursor: default;
}
.infoBlock i {
cursor: default!important;
color: #555;
}
#info {
display: inline-block;
}
#play:active, #pause:active, #nextStep:active {
color: #555;
}