blob: af69dbd10d83ffdf33f340b365af068a73276a71 (
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
|
@font-face {
font-family: "Sansita Swashed";
src: url(assets/fonts/sansita-swashed.woff2);
}
@font-face {
font-family: "Josefin Sans";
src: url(assets/fonts/josefin-sans.woff2);
}
@font-face {
font-family: "Azaret Mono";
src: url(assets/fonts/azaret-mono.woff2);
}
:root {
--bg0: #24244f;
--bg1: #5050b1;
--button: ;
}
body {
margin: 0px;
background-color: #24244f;
background-image: url(assets/images/background.webp);
background-repeat: repeat;
background-position: 0 0;
background-attachment: fixed;
}
article {
background-color: #5050b1c5;
max-width: 960px;
width: auto;
margin-left: auto;
margin-right: auto;
}
.content {
margin: 2em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: white;
font-family: "Sansita Swashed";
font-weight: bold;
}
p,
details,
li,
td {
font-family: "Josefin Sans";
color: white;
}
a {
color: #e38242;
text-decoration: underline;
}
.gray {
margin-right: 2em;
color: #c3987c;
}
table {
margin: 1em;
}
img.cover {
width: 100%;
}
div.screenshots {
float: right;
}
img.screenshot {
display: block;
margin: 10px;
width: 350px;
}
pre {
display: inline;
font-size: 10pt;
font-family: "Azaret Mono";
}
footer {
padding: 2em;
color: rgb(202, 202, 202);
text-align: center;
}
|