blob: 7111287d509c78d996f6b653463682cdc0d0d88b (
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
|
/*
* Copyright (C) 2023, Ferass El Hafidi <vitali64pmemail@protonmail.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
body {
font-family: sans-serif;
max-width: 120ch;
margin: 0 auto;
line-height: 1.5;
padding: 5px;
}
/* Flexbox magic */
header,
header div.header_title,
header ul.header_links {
display: flex;
justify-content: space-between;
align-items: center;
}
/* Header links */
header ul.header_links {
list-style: none;
}
header ul li a.header_link {
margin: 10px;
}
/* Header text */
header div.header_title h1 {
margin: 1px 9px;
border: none;
}
header div.header_title h1 small {
font-size: 11pt;
}
/* Header image */
header div.header_title img {
width: 50px;
height: 50px;
}
/* Misc... */
code {
font-size: 11.5pt;
background: #ddd;
padding: 0.5pt;
border: 1px solid #ccc;
border-radius: 3px;
}
hr {
border: none;
}
h1, h2, h3, h4, h5, hr {
border-bottom: 2px solid #ddd;
}
/* Make it responsive */
@media (max-width: 760px) {
header,
header ul.header_links {
flex-direction: column;
}
header ul.header_links {
list-style: disc;
}
header div.header_title {
justify-content: normal;
}
}
@media (max-width: 450px) {
header div.header_title h1 small {
display: block;
}
header div.header_title img {
width: 70px;
height: 70px;
}
}
|