-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (92 loc) · 2.06 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
<!DOCTYPE HTML>
<html>
<head>
<title>GeoAlchemy: Using SQLAlchemy with Spatial Databases</title>
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100);
* {
font-family: 'Roboto', sans-serif;
line-height: 1.2;
vertical-align: middle;
margin: 0;
}
body {
text-align: center;
}
.img-responsive {
max-width: 100%
}
.container {
position: relative;
padding: 1rem;
}
.logo {
margin-bottom: 1rem;
}
.box {
padding: 1.5rem;
margin: 0 auto 1rem auto;
max-width: 350px;
background: white;
box-shadow: 0 1px 2px #aaa;
border-radius: 3px;
}
a.box {
display: block;
text-decoration: none;
}
h1 {
font-size: 2rem;
font-weight: 100;
color: black;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.box:hover h1 {
color: #CD2103;
}
h2 {
margin-top: .7rem;
font-size: .9rem;
font-weight: 400;
color: gray;
}
@media (min-width: 450px) {
.container {
margin-top: 1rem;
}
.logo {
width: 400px;
margin-bottom: 2rem;
}
}
@media (min-width: 550px) {
.container {
margin-top: 2rem;
}
}
@media (min-width: 1000px) {
.container {
margin-top: 4rem;
}
.logo {
margin-bottom: 3rem;
}
}
</style>
</head>
<body>
<div class="container">
<img src="geoalchemy.png" class="logo img-responsive">
<a class="box" href="http://geoalchemy-2.readthedocs.org/">
<h1>GeoAlchemy 2</h1>
<h2>GeoAlchemy successor, simpler, PostGIS focused</h2>
</a>
<a class="box" href="http://geoalchemy.readthedocs.org/">
<h1>GeoAlchemy</h1>
<h2>GIS Support for SQLAlchemy</h2>
</a>
</div>
</body>
</html>