aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.css
blob: 4d41c2199e0d4c0a60d70fb252dc9d9b3ad084a7 (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
body {
	display: table;
	height: calc(100vh - 100px);
}

ul {
	list-style-type: none;
	padding: 0 !important;
}

ul li {
	color: var(--text-normal);
	background-color: var(--background-code);
	padding: 32px;
	margin: 16px;
	border-radius: 16px;
	list-style-type: none;
	font-size: 16px;
}

ul li a {
	color: var(--text-code);
	font-size: 1.3em;
	line-height: 1.3;
	font-weight: 700;
	text-decoration: none;
}

ul li a:after {
	content: "\a";
	white-space: pre;
}

.index-note {
	display: table-footer-group;
}

.index-note p {
	text-align: center;
	font-size: 15px;
}