aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: 6159f5c0d89e16d3bcfb793bf6c949027c50e6c9 (plain)
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
html {
	background: #000;
	color: #fff;
}

body {
	margin: 0;
}

body, pre {
	font-family: "Roboto", sans-serif;
}

#index {
	max-width: 800px;
	margin: auto;
}

#player {
	display: block;
	width: 100vw;
	height: 90vh;
	max-height: 80vw;
	margin: 1rem auto;
	box-sizing: border-box;
}

#title {
	margin: .5rem;
}

button {
	margin: .5rem;
	background: #222;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: .25rem;
	padding: .5rem;
}

#details, #comments {
	padding: 0 1rem;
}

#comments {
	max-width: 1000px;
}

.replies {
	margin-left: 2rem;
}

a {
	color: lightblue;
}

.comment {
	background: #191919;
	border-radius: .25rem;
	margin: .5rem 0;
	padding: .5rem;
}
.comment .author {
	text-decoration: none;
}
.comment .date {
	color: #aaa;
	font-size-adjust: .4;
}
.comment .body {
	margin-left: .5rem;
}
.replies .comment {
	background: #ffffff0a
}