summaryrefslogtreecommitdiff
path: root/html/style.css
blob: 4221417a201279ef3f91fc74d240de8147d3ad92 (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
77
78
79
80
81
82
83
:root {
	--fg: #f58F44;
	--black: #707880;
	--red: #cc6666;
	--green: #b5bd68;
	--yellow: #f0c674;
	--blue: #5f819d;
	--magenta: #b294bb;
	--cyan: #b4d6d1;
	--white: #c5c8c6;
	--bg: #191919;
	--line: 2px;
}


@font-face {
  font-family: mononoki;
  src: url(mononoki.woff);
}

body {
	background-color: var(--bg);
	color: var(--fg);
	font-family: mononoki;
	font-size: 16px
}

a {
	color: var(--blue);
	text-decoration: none;
}

.main {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 20%;
	margin-right: 20%;

	padding: 2%;
	height: 100%;

	border-left: var(--line) solid var(--fg);
	border-right: var(--line) solid var(--fg);
	border-bottom: var(--line) solid var(--fg);
}

.header {
	text-align: center;
}

.links {
	text-align: center justify;
	text-justify: inter-word;
	#white-space: nowrap;
}

hr {
	width: 100%;
	border: 0;
	border-bottom: var(--line) solid var(--fg);
}
.title {
	font-size: 40px;
	color: var(--fg);
}
.small {
	font-size: 9px;
	padding: 0;
	color: var(--black);
}

a.red {
	color: --var(red);
}

a.green {
	color: --var(green);
}

a.blue {
	color: --var(blue);
}