-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·89 lines (76 loc) · 1.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
font-family: arial, verdana, sans-serif;
}
header, footer { text-align:center; width: 100%; }
header {
height: 40px;
font-size: 40px;
font-weight: bold;
margin-top: 20px;
margin-bottom: 20px;
}
footer {
margin-top: 20px;
}
#container {
margin-left: auto;
margin-right: auto;
width: 640px;
}
#videoplayer {
position: relative;
background-color: #000;
border: 1px #ccc solid;
width: 640px;
height: 360px;
}
#content-wrapper {
position:relative;
top: 0px;
left: 0px
}
#playpause {
position: absolute;
top: 40%;
left: 40%;
height: 2em;
width: 2em;
border-radius:1em;
font-weight: bold;
font-size: 3em;
background: none;
border: 5px #fff solid;
color: #fff;
cursor: pointer;
line-height: 0;
opacity:1;
transition: color 200ms, border-color 200ms;
box-shadow: 0px 0px 1px #aaa;
}
#playpause.playing{
display:none;
}
#playpause.paused{
display:block;
}
#container #playpause:hover {
border-color:#FFD20F;
color: #FFD20F;
}
#content, #adcontainer {
position: absolute;
top: 0px;
left: 0px;
width: 640px;
height: 360px;
}
#console {
font-family: courier, monospace;
font-size: 12px;
margin-top: 20px;
height: 200px;
width: 630px;
padding: 5px;
border: 1px #ccc solid;
overflow-y: scroll;
}