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
|
:root {
--main-fg-color: #003400;
--main-ac-color: #00A800;
background-image: url(media/bg.gif);
}
body {
font-size: 100%;
font-family: "Liberation Serif", "Times New Roman";
display: block;
background-color: rgba(255, 255, 255, 0.8);
margin: 1% 5%;
border-style: double; double double double;
border-width: thick;
border-color: var(--main-fg-color);
}
main {
padding: 0 1%;
}
small {
font-style: italic;
color: gray;
}
header {
background-color: var(--main-fg-color);
display: flex;
justify-content: space-between;
align-items: baseline;
padding: 0 1%;
}
.tagline {
color: whitesmoke;
font-size: 125%;
padding: 0 5%;
text-decoration: underline;
}
p {
margin-top: 0%;
}
h1 {
margin: 0%;
white-space: nowrap;
}
h2, h3 {
margin: 1% 0 0 0;
}
h1 a {
font-size: 125%;
color: white;
font-weight: bold;
text-decoration: none;
background-color: var(--main-fg-color);
padding: 0 1%;
}
nav {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
background: linear-gradient(180deg, #003400 40%, var(--main-ac-color) 100%);
}
nav a {
margin-top: 0;
padding: .25em 1em;
text-decoration: none;
color: white;
font-weight: bold;
border-style: none solid none none;
border-width: thin;
box-shadow: inset 8px rgba(0, 0, 0, 0.20);
}
nav a:hover {
background-color: var(--main-fg-color);
color: white;
}
nav .selected {
background: linear-gradient(180deg, #003400 50%, #007400 100%);
}
.fig {
position: fixed;
bottom: 0%;
right: -2%;
opacity: 1;
transition: opacity 0.25s ease-in;
z-index: -1;
width: 25%;
}
.fig:hover {
z-index: 5;
}
.eu {
position: absolute;
right: 0%;
top: 0%;
opacity: 1;
scale: 25%;
}
.eu:hover {
animation: spin 5s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
figure {
float: right;
clear: right;
max-width: 15em;
}
figure img {
max-width: 100%;
}
.yah {
padding-left: 1%;
}
|