summaryrefslogtreecommitdiff
path: root/styles/style.css
blob: 457862f1959bf6eb97987c4c9ba7b8a525083a7b (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
:root
{
	--bgcolor: #181a1b;
	--fgcolor: #ffffff;
	--linkcolor: #82aefa;
	--hovercolor: #0ef17d;
	--visitedcolor: #ff00ff;
}

html
{
	background-color: var(--bgcolor);
	color: var(--fgcolor);
	font-size: 14px;
	font-family: monospace;
	max-width: 75%;
	margin-left: auto;
	margin-right: auto;
}

a
{
	color: var(--linkcolor);
	text-decoration: none;
	transition: all .5s;
}

a:hover
{
	color: var(--hovercolor);
	text-decoration: underline 2px;
}

pre
{
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	display: block;
	line-height: 1.5;
	padding: 9.5px;
	white-space: pre-wrap;
}

pre code
{
	background: rgba(0, 0, 0, 0);
}

code
{
	background: rgba(0, 0, 0, 0.5);
	color: var(--linkcolor);
	font-family:sans-serif;
}

div.text
{
	text-align: justify;
}

nav
{
	display: flex;
	justify-content: space-evenly;
	padding-top: 1em;
	padding-bottom: 1em;
}

ul, ol
{
	line-height: 2em;
}

p
{
	text-align: justify;
}

#header, #content
{
	padding-bottom: 1em;
}

#footer
{
	line-height: .5em;
}

.grid
{
	border-radius: 2em;
	display: grid;
	grid-template-columns: auto;
	grid-auto-flow: column;
	gap: 1em;
}

.grid p.grid-icon, p.grid-text
{
	text-align: center;
}

.grid a.grid-element:hover
{
	background-color: rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

.grid-element
{
	border-radius: 2em;
}

.grid-icon
{
	font-size: 4em;
}

.grid-text
{
	font-size: 2em;
}