summaryrefslogtreecommitdiff
path: root/britons.css
blob: 63d2cb211e3063a77251e0b8511200c4eb7f1471 (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
: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);
	margin: 2.5%;
}

main {
	padding: 0 1%;
	border-style: solid;
	border-color: var(--main-fg-color);
}

small {
	font-style: italic;
	color: gray;	
}

header {
	background-color: var(--main-fg-color);
	border-color: var(--main-fg-color);
	border-width: thick;
	border-style: solid;
	padding: 0 1%;
}

p {
	margin-top: 0%;
}

h1 {
	margin: 0%;
}

h2 {
	margin-bottom: 0%;
}

h1 a	{
	font-size: 125%;
	color: white;
	font-weight: bold;
	text-decoration: none;
}
h1 i {
	font-size: 75%;
	color: olivedrab;
	margin-left: 5%;
	text-decoration: underline;
}
nav {
	display: flex;
	justify-content: flex-start; 
	flex-wrap: wrap;
	background-color: var(--main-ac-color);
	border-style: none solid;
	border-color: var(--main-fg-color);
}
nav a {
	margin-top: 0;
	padding: .25em 1em;
	text-decoration: none;
	color: white;
	font-weight: bold;
	
	
}
nav a:hover {
	background-color: var(--main-fg-color);
	color: white;
}
nav .selected {
	background-color: var(--main-fg-color);
}

.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%;
}