-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
146 lines (137 loc) · 3.83 KB
/
index.html
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Geolexica: Open geospatial terminology</title>
<style>
body {
background: #fff;
font-family: Helvetica, sans-serif;
font-size: 18px;
line-height: 1.15;
}
.site-selector {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
padding: 0;
gap: 2.5rem;
text-align: center;
/*
Bottom margin serves to prevent footer about text
from seeming as if it was part of the last site in list
on narrow viewports.
*/
margin: 0 0 5rem 0;
}
.site-selector li {
display: flex;
flex-direction: column;
width: 15rem;
}
.img-wrapper img {
width: 15rem;
height: 15rem;
}
.site-selector li:hover .img-wrapper {
background: rgba(0,0,0,0.05);
}
.site-selector span {
background: black;
color: white;
display: inline-block;
font-weight: bold;
padding: .7em;
}
.site-selector .note {
color: black;
margin-top: .5rem;
}
.site-selector a {
text-decoration: none;
font-size: 90%;
}
.about {
text-align: center;
display: block;
margin: 2.5rem;
}
@media screen and (min-width: 800px) {
body {
position: absolute;
inset: 0;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
}
.about {
max-width: 60vw;
margin: 0 auto;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168998071-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "UA-168998071-1");
</script>
</head>
<body>
<div class="about">
<p>Geolexica: Open geospatial terminology<p>
</div>
<ul class="site-selector">
<li>
<a href="https://isotc211.geolexica.org/">
<div class="img-wrapper">
<img
src="https://isotc211.geolexica.org/assets/logo-iso-noninverted.svg"
alt="">
</div>
<div class="caption">
<span>ISO/TC 211 Multi-Lingual Glossary of Terms (MLGT)</span>
</div>
</a>
</li>
<li>
<a href="https://isotc204.geolexica.org/">
<div class="img-wrapper">
<img
src="https://isotc204.geolexica.org/assets/logo-iso-noninverted.svg"
alt="">
</div>
<div class="caption">
<span>ISO/TC 204 Intelligent Transport Services Core Concepts</span>
</div>
</a>
</li>
<li>
<a href="https://osgeo.geolexica.org/">
<div class="img-wrapper">
<img
src="https://osgeo.geolexica.org/assets/osgeo-emblem-cmyk.svg"
style="transform: scale(0.75);"
alt="">
</div>
<div class="caption">
<span>OSGeo Glossary</span>
</div>
</a>
</li>
</ul>
<div class="about">
<p>
The name “Geolexica” is a combination of the Greek prefix “geo-”
(of and pertaining to the Earth) and the suffix “lexica”
derived from the Greek “lexiko”, counterpart of the English
“lexicon” (vocabulary).
</p>
</div>
</body>
</html>