Skip to content

Commit 9981f92

Browse files
committed
Initial commit
0 parents  commit 9981f92

File tree

2 files changed

+110
-0
lines changed

2 files changed

+110
-0
lines changed

geoalchemy.png

20.6 KB
Loading

index.html

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<title>GeoAlchemy: Using SQLAlchemy with Spatial Databases</title>
5+
<style type="text/css">
6+
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100);
7+
8+
* {
9+
font-family: 'Roboto', sans-serif;
10+
line-height: 1.2;
11+
vertical-align: middle;
12+
margin: 0;
13+
}
14+
15+
body {
16+
text-align: center;
17+
}
18+
19+
.img-responsive {
20+
max-width: 100%
21+
}
22+
23+
.container {
24+
position: relative;
25+
padding: 1rem;
26+
}
27+
28+
.logo {
29+
margin-bottom: 1rem;
30+
}
31+
32+
.box {
33+
padding: 1.5rem;
34+
margin: 0 auto 1rem auto;
35+
max-width: 350px;
36+
background: white;
37+
box-shadow: 0 1px 2px #aaa;
38+
border-radius: 3px;
39+
}
40+
41+
a.box {
42+
display: block;
43+
text-decoration: none;
44+
}
45+
46+
h1 {
47+
font-size: 2rem;
48+
font-weight: 100;
49+
color: black;
50+
51+
text-overflow: ellipsis;
52+
white-space: nowrap;
53+
overflow: hidden;
54+
}
55+
56+
.box:hover h1 {
57+
color: #CD2103;
58+
}
59+
60+
h2 {
61+
margin-top: .7rem;
62+
font-size: .9rem;
63+
font-weight: 400;
64+
color: gray;
65+
}
66+
67+
@media (min-width: 450px) {
68+
.container {
69+
margin-top: 1rem;
70+
}
71+
72+
.logo {
73+
width: 400px;
74+
margin-bottom: 2rem;
75+
}
76+
}
77+
78+
@media (min-width: 550px) {
79+
.container {
80+
margin-top: 2rem;
81+
}
82+
}
83+
84+
@media (min-width: 1000px) {
85+
.container {
86+
margin-top: 4rem;
87+
}
88+
89+
.logo {
90+
margin-bottom: 3rem;
91+
}
92+
}
93+
</style>
94+
</head>
95+
<body>
96+
<div class="container">
97+
<img src="geoalchemy.png" class="logo img-responsive">
98+
99+
<a class="box" href="http://geoalchemy-2.readthedocs.org/">
100+
<h1>GeoAlchemy 2</h1>
101+
<h2>GeoAlchemy successor, simpler, PostGIS focused</h2>
102+
</a>
103+
104+
<a class="box" href="http://geoalchemy.readthedocs.org/">
105+
<h1>GeoAlchemy</h1>
106+
<h2>GIS Support for SQLAlchemy</h2>
107+
</a>
108+
</div>
109+
</body>
110+
</html>

0 commit comments

Comments
 (0)