-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyles.css
106 lines (92 loc) · 1.6 KB
/
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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
html, body {
background: #444;
padding: 0px;
margin: 0px;
font-family: monospace;
overflow: hidden;
}
header {
}
.logo {
font-weight: bold;
color: #fff;
padding: 10px;
background-color: #4c4c4c;
font-size: 14px;
display: inline-block;
cursor: default;
}
form {
display: inline-block;
padding: 0px;
margin: 0px;
min-width: 40%;
}
input {
padding: 0px;
margin: 0px;
height: 26px;
border-top: 0px !important;
border-left: 0px !important;
border-right: 0px !important;
background-color: #444;
width: 100%;
outline: none;
color: #ccc;
border-bottom: 2px solid #666;
}
iframe {
border: 0px;
padding: 0px;
margin: 0px;
}
div.controller {
position: absolute;
background-color: #888;
right: 0;
top: 0;
padding: 3px;
color: #fff;
cursor: pointer;
opacity: 0.3;
height: 30px;
line-height: 30px;
}
div.controller:hover {
opacity: 1;
}
div.playerwrapper {
display: none;
text-align: center;
}
div.author {
display: inline-block;
color: #ccc;
}
div.author a {
color: #ddd;
text-decoration: none;
border-bottom: 2px solid #666;
display: inline-block;
padding-bottom: 5px;
}
.invalidurl {
animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}