about summary refs log tree commit diff
path: root/served/things/memoryleak/memoryleak.css
blob: 1d3470b40389b5680c6cd93f9ffb9b5327c1ca5c (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
#downloads {
	display: flex;
	flex-direction: column;
}

#downloads ul {
	margin: 0;
	list-style: square;
}

code {
	background-color: var(--background-dim);
	padding: 1px 4px;
	border-radius: 4px;
}

#float-hell {
	display: block;
}

#downloads {
	display: flex;
	flex-direction: row;
}

@media (max-width: 30rem) {
	#downloads {
		display: grid;
		grid-template-columns: min-content min-content;
	}
}