-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (63 loc) · 853 Bytes
/
style.css
File metadata and controls
63 lines (63 loc) · 853 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
*{
margin: 0;
padding: 0;
}
body{
font-size: 62.5%;
font-family: sans-serif;
background: #f7f7f7;
color: #4d4d4d;
}
tr{
vertical-align: top;
}
.full{
width: 1400px;
height: 652px;
}
.post .bg{
display: block;
}
.leon{
width: 160px;
position: fixed;
left: 25%;
}
#music-control{
position: fixed !important;
left: none !important;
right: 20px;
top: 20px;
display: block;
width: 40px;
height: 40px;
z-index: 999;
}
.play{
background: url('images/sound.gif') no-repeat center center;
}
.pause{
background: url('images/sound2.gif') no-repeat center center;
}
.main{
position: absolute;
opacity: 1;
top: 0;
}
/*~Mobile*/
@media screen and (max-device-width: 480px){
.full{
width: 1120px;
height: 522px;
max-height: 85vh;
}
.leon{
width: 128px;
}
#music-control{
display: none;
}
audio{
display: none;
}
}