blob: a9b8a93866a49b76566a169bb85cce25a66311e6 (
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
|
* { margin: 0 }
html {
position: relative;
min-height: 100%;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
body > header {
width: 100%;
height: 200px;
background-image: url("../imgs/title.png");
}
body > header div#logo {
float: right;
width: 214px;
height: 180px;
margin: 10px 0 10px 0;
background-repeat: no-repeat;
background-image: url("../imgs/logo.png");
display: inline-block;
opacity: 0.45;
}
/*
body > footer {
box-shadow: 0px -4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: #3f7393;
height: 200px;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
}
*/
body > div#wrapper {
width: 100%;
display: table;
margin: 2% 0 2% 0;
}
nav.topnav {
display: block;
width: 100%;
overflow: hidden;
background-color: #3f7393;
position: sticky;
top: 0;
z-index: 1;
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
nav.topnav a {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
nav.topnav span {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
nav.topnav div.outer-title {
padding: 0 15px 0 10px;
overflow: hidden;
text-align: center;
padding: 12px 16px;
color: white;
font-size: 20px;
}
nav.topnav div.outer-title > div.inner-title {
width: 100%;
}
nav.topnav a.left {
float: left;
}
nav.topnav a.right {
float: right;
}
nav.topnav a:hover {
color: black;
}
nav.topnav a.active {
background-color: #2196F3;
color: white;
}
nav.topnav span.active {
background-color: #2196F3;
color: white;
}
.footnote-reference {
font-size: 80%;
}
.content {
text-align: left;
}
|