blob: 6964092677fa7230f395d4e841e0f7f9cce5255f (
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
|
:root {
--skin: #e5cdab;
--bg: #100f03;
--orange: #e56800;
--light-orange: #fdb64e;
--yellow: #fecf41;
}
@font-face {
font-family: 'Iosevka';
src: url('../fonts/iosevka-regular.woff2') format('woff2');
font-display: swap;
}
@media (min-width: 55rem) {
body {
max-width: 780px;
padding-top: 20px;
}
main {
margin: auto;
}
}
@media (max-width: 55rem) {
main {
margin: auto;
max-width: 92%;
}
}
body {
color: white;
margin: auto;
}
h1 {
font-size: 36px;
font-weight: 600;
letter-spacing: 0.5px;
margin-bottom: 30px;
}
header {
text-align: center;
}
a {
text-decoration: none;
color: var(--light-orange);
}
a:hover {
color: var(--yellow);
}
html {
font-family: Iosevka;
min-height: 100%;
padding-top: 10px;
padding-bottom: 5em;
background: url("/images/blacktile.jpg");
background-repeat: repeat;
}
article {
background: rgba(0, 0, 0, 0.4);
border: 1px solid white;
}
div {
padding: 10px;
}
p {
font-size: 1rem;
}
p img {
border: 2px solid white;
}
b {
letter-spacing: 2px;
color: var(--yellow);
}
footer {
display: flex;
justify-content: center;
}
footer img {
width: 69px;
height: auto;
padding: 6px;
}
textarea {resize: none}
input {max-height: 2em}
hr {
color: white;
}
input {
font-family: inherit;
margin-bottom: 6px;
background: var(--bg);
color: white !important;
border: 1px solid white;
}
input:focus {
outline: none;
border: 1px solid var(--yellow);
}
textarea {
border: 1px solid white;
font-family: inherit;
background: var(--bg);
color: white !important;
}
textarea:focus {
outline: none;
border: 1px solid var(--yellow);
}
|