-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
73 lines (73 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
body {
margin: 0;
font-family: 'Bangers';
}
* {
box-sizing: border-box;
user-drag: none;
}
form {
display: flex;
width: 100%;
padding: 100px;
background-color: #000;
}
form > input[type=text],
form > input[type=submit]
{
padding: 5px 15px;
background-color: #CCC;
border: 2px solid #333;
border-radius: 100px;
font-family: inherit;
font-size: 20px;
line-height: 1.6;
}
form > input[type=text] {
min-width: 600px;
margin-right: 10px;
}
form > input[type=text]:focus {
background-color: #FFF;
border-color: #CCC;
outline: none;
}
form > input[type=submit] {
background-color: ;
border: 0;
cursor: pointer;
}
form > input[type=submit]:hover {
background-color: #66bb6a;
}
form > input[type=submit]:active {
background-color: #43a047;
}
.container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* perspective: 1200px;
perspective-origin: 50% 50%; */
overflow: hidden;
}
.player {
position: absolute;
top: -32px;
left: -32px;
width: 64px;
height: 64px;
background-color: #000;
border-radius: 5px;
overflow: hidden;
}
.player > .volume {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 0;
background-color: #9ccc65;
}