blob: 2a42ca85999848a22f0cfa8e955bb1e89a101a28 (
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
|
/*
* Color scheme
* Background color: #eaefef
* Code background: #d4d9d9
* Main color: #00558e
* Secondary color: #0b3075
*/
:root {
--color-1: #eaefef;
--color-2: #d4d9d9;
--color-3: #0c7a9c;
--color-3: #00558e;
--color-4: #0b3075;
}
body{
background-color:var(--color-1);
color:var(--color-3);
font-family:Arial;
padding-bottom: 2em;
}
a{
color: var(--color-3);
}
ul.topBar{
background-color:var(--color-3);
text-transform:uppercase;
margin:0;
padding:0;
overflow:hidden;
list-style-type:none;
}
li.topLink a{
color:var(--color-1);
float:left;
display:block;
text-align:center;
padding:0.875rem 1rem;
text-decoration:none;
}
li.topLink a:hover{
background-color:var(--color-4);
}
.search{
color:var(--color-3);
background-color:var(--color-1);
border-color:var(--color-3);
padding:0.75rem 1.25rem 0.75rem;
width:90%;
border-radius:0.3125rem;
margin-left:auto;
margin-right:auto;
margin-bottom:15em;
font-family:IBM Plex Mono;
}
.main{
margin:auto;
width:60%;
}
.icon{
font-size:12.5rem;
margin-top:0.625rem;
margin-bottom:0.625rem;
}
footer.LicenseFooter{
font-size:1em;
padding-top:2em;
text-align:center;
}
@media only screen and (orientation: portrait){
.main{
margin:auto;
width:90%;
}
}
div.article a{
text-decoration:none;
display:block;
}
img {
width:75%;
}
|