-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_view.css
More file actions
135 lines (115 loc) · 1.79 KB
/
simple_view.css
File metadata and controls
135 lines (115 loc) · 1.79 KB
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
html {
font-family: 'Lato', 'Open Sans', sans-serif;
background-color: black;
color: white;
}
#total_player_wrap {
width: 640px;
display: block;
margin-left: auto;
margin-right: auto;
}
.song_table {
width: 600px;
background-color: black;
color: white;
}
.song_table th {
width: 200px;
font-weight: 400;
}
.song_table td {
font-weight: 100;
font-size: 18px;
border-bottom: 1px solid white;
}
.song_table tbody tr:hover {
color: gray;
}
.song_table tr {
border: 2px solid white;
}
#played_table {
opacity: 0.8;
}
.table_title {
font-size: 24px;
font-weight: 100;
}
.spanned {
width: 100%;
}
#audio_info {
width: 100%;
height: 30px;
display: block;
}
#audio_info li {
display: inline;
list-style-type: none;
height: 30px;
padding-right: 20px;
}
#audio_play {
width: 600px;
height: 92px;
background-color: gray;
border: 2px solid white;
border-radius: 12px;
}
.control_wrap {
width: 100px;
height: 30px;
position: relative;
float: left;
}
#audio_controls {
width: 100%;
height: 30px;
background-color: black;
color: white;
border-radius: 10px;
vertical-align: bottom;
display: block;
position: relative;
}
.control_wrap {
width: 25%;
}
#audio_controls a {
width: 100%;
display: block;
list-style-type: none;
text-align: center;
text-decoration: none;
vertical-align: middle;
height: 30px;
position: absolute;
top: 8px;
}
#audio_controls a:visited {
color:white;
}
#audio_controls a:link {
color:white;
}
#audio_controls a:hover {
color:white;
}
#audio_controls a:active {
color:white;
}
.table_data {
text-align: center;
}
#search_bar {
width: 500px;
background-color: #dddddd;
border-radius: 5px;
font-family: 'Lato', 'Open Sans', sans-serif;
font-weight: 100;
}
#search_submit {
width: 100px;
font-family: 'Lato', 'Open Sans', sans-serif;
}