-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
145 lines (126 loc) · 2.16 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
* {
margin: 0px;
padding: 0px;
font-family: Century Gothic;
overflow: hidden;
}
#splashScreen {
background-color: white;
width: 100%;
height: 100%;
text-align: center;
float: left;
position: absolute;
z-index: 45;
}
#albumArtImg {
width: 40%;
margin: 5%;
float: left;
background-color: white;
box-shadow: 0 0 50px white;
}
#nameHolderInfoBox {
margin: 5%;
font-size: 1.5em;
width: 40%;
float: left;
}
#artistInfoBox{
margin: 5%;
font-size: 1.2em;
width: 40%;
float: left;
}
div#mp3_player1{ width:300px; height:160px; background:#000; padding:5px; margin:50px auto; }
div#mp3_player1 > div > audio{ width:300px; background:#000; float:left; }
div#mp3_player1 > canvas{ width:300px; height:100px; background:#002D3C; float:left; }
/* Statistics Board */
#stats {
background-color: rgba(0,0,0,0.4);
text-align: center;
color: white;
font-size: 1em;
padding: 10px;
width: 100px;
border-radius: 10px;
margin: 20px;
position: absolute;
float: left;
}
#stats img {
width: 100%;
}
#vibrator {
padding: 10px;
border-radius: 5px;
border: none;
color: white;
background-color: black;
outline: none;
}
#vibrator:hover {
color: black;
background-color: white;
}
/* Game play */
#leftTable {
width: 49%;
height: 70%;
background-color: white;
float: left;
border: solid 1px black;
margin-left: 1%;
text-align: center;
}
#rightTable {
width: 49%;
text-align: center;
height: 70%;
background-color: white;
float: left;
border: solid 1px black;
}
.volumeToggle {
width: 70px;
height: 70px;
background-color: white;
border: 1px black dashed;
padding: 10px;
}
#songBoardLeft, #songBoardRight, #songList {
width: 33%;
background-color: black;
height: 30%;
color: white;
text-align: center;
float: left;
border: solid 1px black;
}
#songList {
background-color: white;
text-align: center;
}
.songbuttons {
width: 25%;
height: 25%;
border: 1px solid white;
float: left;
padding: 10px;
background-color: #00FFFF;
color: white;
outline: none;
}
.songbuttons:hover{
color: black;
background-color: white;
}
.turnTableImg {
margin: 3%;
width: 50%;
}
#turnTableRightText,
#turnTableLeftText {
font-size: 2em;
font-size: strong;
}