blob: 16d4c09b29652d631def9f4111b365b166b47979 (
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
|
:root {
--main-fg-color: #003400;
--main-ac-color: #007400;
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);
padding: 2%;
padding-top: 1%;
margin: 2.5%;
border-style: solid;
border-width: thick;
border-color: var(--main-fg-color);
}
small {
font-style: italic;
color: gray;
}
h1 {
margin: 0%;
}
h1 a {
font-size: 125%;
color: var(--main-fg-color);
font-weight: bold;
text-decoration: none;
}
h1 i {
font-size: 75%;
color: darkolivegreen;
margin-left: 5%;
text-decoration: underline;
}
nav {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
}
nav a {
margin-top: 0;
padding: 0.5% 4%;
text-decoration: none;
color: white;
background-color: var(--main-fg-color);
font-weight: bold;
}
nav a:hover {
background-color: var(--main-ac-color);
color: white;
}
.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 {
margin-left: auto;
max-width: 25%;
float: right;
background-color: white;
padding: 1%;
}
*/
figure {
float: right;
clear: right;
max-width: 25%;
}
figure img {
max-width: 100%;
}
|