blob: 7d2ba8967ae9ec60356be74b71895365c0b06943 (
plain) (
blame)
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
|
@font-face {
font-family: 'roboto-regular';
src: url('fonts/Roboto-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'roboto-light';
src: url('fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
font-family: 'roboto-bold';
src: url('fonts/Roboto-Bold.ttf') format('truetype');
}
body {
background-color: #151515;
}
main {
margin: auto;
max-width: 800px;
padding: 1em;
background-color: #202020;
color: #eee;
font-family: 'roboto-regular', Arial;
}
nav > a {
font-size: 1.4rem;
}
a, a:visited {
color: #eee;
}
a:hover {
color: #ccc;
}
.thumbnail {
display: block;
max-height: 256px;
max-width: 512px;
}
/*
* Playlist table
*/
td {
padding-right: 16px;
padding-top: 1px;
padding-bottom: : 1px;
}
td, th {
vertical-align:top;
}
.tableheader td {
color: #918f8f;
border-bottom: 1px solid #3f4077;
}
.stat {
text-align: right;
white-space: nowrap;
padding-left: 8px
}
.tracktable {
border-left: 1px solid #3f4077;
}
.tracktable tr:hover {
background-color: #163037;
}
/*
* API Docs
*/
pre {
font-size: 0.9rem;
font-family: monospace;
background-color: #151515;
overflow: auto;
padding: 1em;
}
.code-background {
background-color: #151515;
}
.code-normal {
color: #c0c5ce;
}
.code-string {
color:#a3be8c;
}
.code-number {
color: #d08770;
}
|