aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
blob: 580388e533b2765948d2015f888e50611ce1766a (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
html { background: #000; color: #fff }
body { margin: 0; font-family: sans-serif }
a { color: lightblue }

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

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

#title-bar {
	display: flex;
	align-items: center;
	gap: .25rem;
	margin: .5rem;

	#title { flex-grow: 1 }
}

#details, #comments { padding: 0 1rem; max-width: 1000px }

.comment .replies { margin-left: 2rem }