blob: ffee6e75cf0de5e2193f1002c8a8c1edb17c1e9f (
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
|
:root {
--main-bg-color: #4e0408;
--main-fg-color: #73232d;
}
body {
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
header {
display: flex;
background:linear-gradient(to bottom, var(--main-bg-color) 0%, var(--main-fg-color) 100%);
box-shadow: rgba(0,0,0,.3) 0 3px 8px;
padding: 0.5rem;
color: #ffffff;
align-items: stretch;
}
header img {
object-fit: cover;
margin-right: 1rem;
height: 8rex;
align-items: center;
}
nav {
display: flex;
flex-direction: row;
align-items: center;
font-size: 80%;
background-color: whitesmoke;
}
nav a {
margin: 0 2rex;
display: flex;
flex-direction: row;
align-items: center;
}
nav img {
margin-right: 0.5rex;
}
header h1 {
margin: 0;
color: white;
}
header h1 a {
font-size: 120%;
color: white;
text-decoration: none;
}
.contentheader {
display: flex;
align-items: center;
background: var(--main-fg-color);
margin-top: 1rem;
max-height: 8rex;
color: white;
padding: 0.5rex 0.5rex 0 0.5rex;
}
.contentheader img {
max-height: inherit;
margin-right: 2.5rex;
}
.content {
display: flex;
margin-left: auto;
}
hr {
padding: 0;
margin: 0;
border-color: white;
}
main {
margin: 0 0 0 2.5rem;
}
.fig {
position: fixed;
bottom: 0%;
right: -2%;
opacity: 0.15;
transition: opacity 0.25s ease-in;
z-index: -1;
width: 25%;
}
.fig:hover {
z-index: 5;
opacity: 1;
}
|