blob: bc6080ab3e71a4bd7f7274dbf8dd7cea293bc341 (
plain) (
blame)
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
|
body {
background-color: black;
color: white;
font-family: sans-serif;
width: 95%;
margin: auto;
line-height: 1.3;
}
h1 {
text-align: center;
}
.multicol {
display: flex;
flex-flow: row;
/* flex-flow: row wrap; */
/* justify-content: center; */
/* align-items: flex-start; */
/* align-content: flex-start; */
/* height: calc(100vh); */
gap: 3%;
}
.multicol div {
min-width: 30ex;
}
#footer {
line-height: 1.2;
font-size: 80%;
}
a:link {
color: cyan;
text-decoration: none;
}
a:visited {
color: violet;
text-decoration: none;
}
a:hover {
color: yellow;
text-decoration: none;
}
a:active {
color: lime;
text-decoration: none;
}
#nav ul {
list-style-type: none;
padding: 1em 0;
text-align: center;
/*************************************/
/* border-top: 2px solid black; */
/* border-bottom: 2px solid back; */
/*************************************/
}
#nav ul li {
display: inline;
padding: 0 1.5em;
}
#nav ul li a {
font-weight: bold;
color: white;
}
.alarm {
color: red;
}
.alert {
color: orange;
}
|