summaryrefslogtreecommitdiff
path: root/src/style.php
blob: a3a8dcbaabe37dbe50d319893c3a97e5d834da73 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
	header("Content-type: text/css; charset: UTF-8");
	include($_SERVER["DOCUMENT_ROOT"] . "/vars.php");
?>
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

:root {
	--background: #<?php echo($c_bg) ?>;
	--text: #<?php echo($c_fg) ?>;
	--header: #<?php echo($c_fg) ?>;
	--secondary: #<?php echo($c_sc) ?>;
	--highlight: #<?php echo($c_hl) ?>;
}

body {
	margin: 0px;
	background-color: var(--background);
}

@media (max-aspect-ratio: 6/7) {
	.contentpane {
		margin: auto;
		width: 100%;
		min-height: 100%;
	}
}

@media (min-aspect-ratio: 7/7) {
	.contentpane {
		margin: auto;
		width: 60%;
		min-height: 100%;
	}
}

p {
	text-align: left;
	text-indent: 25px;
	font-family: 'Quicksand', sans-serif;
	font-size: 16pt;
	color: var(--text);
	margin: 8px 75px 8px 75px;
}

h1 {
	text-align: center;
	font-family: 'Quicksand', sans-serif;
	font-size: 30pt;
	font-weight: 600;
	color: var(--header);
	padding: 50px 50px 3px 50px;
	margin: auto auto 0px auto;
}

h2 {
	text-align: center;
	font-family: 'Quicksand', sans-serif;
	font-size: 24pt;
	font-weight: 600;
	color: var(--header);
	padding: 8px 50px 8px 50px;
}

h3 {
	text-align: left;
	text-indent: 55px;
	font-family: 'Quicksand', sans-serif;
	font-size: 16pt;
	font-weight: 600;
	color: var(--text);
	padding: 8px 50px 2px 50px;
}

h3.nav {
	text-align: center;
	text-indent: 0px;
	padding: 3px 50px 8px 50px;
	margin: 0px auto auto auto;
}

ul h3 {
	font-style: italic;
	text-align: left;
	text-indent: 0px;
	padding: 8px 50px 8px 50px;
}

ul h3 a {
	font-style: italic;
}

ul p {
	text-indent: 0px;
	font-family: 'Quicksand', sans-serif;
	font-size: 16pt;
	color: var(--text);
}

a {
	color: var(--secondary);
	font-family: 'Quicksand', sans-serif;
	text-decoration: none;
}

a:hover {
	color: var(--highlight);
}
a.backbutton {
	font-style: normal;
	font-size: 80%;
	text-decoration: none;
	padding: 0px;
}

ul {
	list-style-position: outside;
	padding: 0px 0px 0px 75px;
}

li {
	color: var(--highlight);
}

hr {
	border-color: var(--text);
	background-color: var(--text);
}

.footer {
	width: auto;
	margin: auto;
}
.ascii {
	color: var(--secondary);
}
.centermath {
	text-align: center;
	text-indent: 0px;
	margin: 14px 40px 14px 40px;
}