Skip to content

Commit e619676

Browse files
committed
Initial commit
0 parents  commit e619676

File tree

7 files changed

+496
-0
lines changed

7 files changed

+496
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

_config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pygments: true
2+
markdown: redcarpet
3+
4+
name: Geocoder
5+
description: The almost missing Geocoder PHP library!
6+
7+
travis_base_url: https://travis-ci.org/geocoder-php/
8+
github_base_url: https://github.com/geocoder-php/

_layouts/home.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
7+
8+
<title>{{ site.name }} - {{ site.description }}</title>
9+
10+
<link rel="stylesheet" href="css/main.css">
11+
<link rel="stylesheet" href="css/pygment_trac.css">
12+
13+
<!--[if lt IE 9]>
14+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
15+
<![endif]-->
16+
</head>
17+
<body>
18+
<div class="wrapper">
19+
<header>
20+
<h1>{{ site.name }}</h1>
21+
<p>{{ site.description }}</p>
22+
23+
<p class="view">
24+
<a href="https://github.com/geocoder-php/Geocoder">View the Project on GitHub <small>geocoder-php/Geocoder</small></a>
25+
</p>
26+
27+
<ul>
28+
<li><a href="{{ site.github_base_url }}{{ site.name }}/zipball/master">Download <strong>ZIP File</strong></a></li>
29+
<li><a href="{{ site.github_base_url }}{{ site.name }}/tarball/master">Download <strong>TAR Ball</strong></a></li>
30+
<li><a href="{{ site.github_base_url }}{{ site.name }}">View On <strong>GitHub</strong></a></li>
31+
</ul>
32+
</header>
33+
34+
<section>
35+
{{ content }}
36+
</section>
37+
38+
<footer>
39+
<p>
40+
This project is maintained by <a href="https://github.com/willdurand">William Durand</a> and
41+
<a href="{{ site.github_base_url }}?tab=members">awesome people</a>.
42+
</p>
43+
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
44+
</footer>
45+
</div>
46+
<script src="js/scale.fix.js"></script>
47+
<script type="text/javascript">
48+
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
49+
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
50+
</script>
51+
<script type="text/javascript">
52+
try {
53+
var pageTracker = _gat._getTracker("UA-27331396-1");
54+
pageTracker._trackPageview();
55+
} catch(err) {}
56+
</script>
57+
</body>
58+
</html>

css/main.css

Lines changed: 260 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,260 @@
1+
@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);
2+
3+
body {
4+
padding:50px;
5+
font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
6+
color:#777;
7+
font-weight:300;
8+
}
9+
10+
h1, h2, h3, h4, h5, h6 {
11+
color:#222;
12+
margin:0 0 20px;
13+
}
14+
15+
p, ul, ol, table, pre, dl {
16+
margin:0 0 20px;
17+
}
18+
19+
h1, h2, h3 {
20+
line-height:1.1;
21+
}
22+
23+
h1 {
24+
font-size:28px;
25+
}
26+
27+
h2 {
28+
color:#393939;
29+
}
30+
31+
h3, h4, h5, h6 {
32+
color:#494949;
33+
}
34+
35+
a {
36+
color:#39c;
37+
font-weight:400;
38+
text-decoration:none;
39+
}
40+
41+
a small {
42+
font-size:11px;
43+
color:#777;
44+
margin-top:-0.6em;
45+
display:block;
46+
}
47+
48+
.wrapper {
49+
width:860px;
50+
margin:0 auto;
51+
}
52+
53+
blockquote {
54+
border-left:1px solid #e5e5e5;
55+
margin:0;
56+
padding:0 0 0 20px;
57+
font-style:italic;
58+
}
59+
60+
code, pre {
61+
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
62+
color:#333;
63+
font-size:12px;
64+
}
65+
66+
pre {
67+
padding:8px 15px;
68+
background: #f8f8f8;
69+
border-radius:5px;
70+
border:1px solid #e5e5e5;
71+
overflow-x: auto;
72+
}
73+
74+
table {
75+
width:100%;
76+
border-collapse:collapse;
77+
}
78+
79+
th, td {
80+
text-align:left;
81+
padding:5px 10px;
82+
border-bottom:1px solid #e5e5e5;
83+
}
84+
85+
dt {
86+
color:#444;
87+
font-weight:700;
88+
}
89+
90+
th {
91+
color:#444;
92+
}
93+
94+
img {
95+
max-width:100%;
96+
}
97+
98+
header {
99+
width:270px;
100+
float:left;
101+
position:fixed;
102+
}
103+
104+
header ul {
105+
list-style:none;
106+
height:40px;
107+
108+
padding:0;
109+
110+
background: #eee;
111+
background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
112+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
113+
background: -webkit-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
114+
background: -o-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
115+
background: -ms-linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
116+
background: linear-gradient(top, #f8f8f8 0%,#dddddd 100%);
117+
118+
border-radius:5px;
119+
border:1px solid #d2d2d2;
120+
box-shadow:inset #fff 0 1px 0, inset rgba(0,0,0,0.03) 0 -1px 0;
121+
width:270px;
122+
}
123+
124+
header li {
125+
width:89px;
126+
float:left;
127+
border-right:1px solid #d2d2d2;
128+
height:40px;
129+
}
130+
131+
header ul a {
132+
line-height:1;
133+
font-size:11px;
134+
color:#999;
135+
display:block;
136+
text-align:center;
137+
padding-top:6px;
138+
height:40px;
139+
}
140+
141+
strong {
142+
color:#222;
143+
font-weight:700;
144+
}
145+
146+
header ul li + li {
147+
width:88px;
148+
border-left:1px solid #fff;
149+
}
150+
151+
header ul li + li + li {
152+
border-right:none;
153+
width:89px;
154+
}
155+
156+
header ul a strong {
157+
font-size:14px;
158+
display:block;
159+
color:#222;
160+
}
161+
162+
section {
163+
width:500px;
164+
float:right;
165+
padding-bottom:50px;
166+
}
167+
168+
small {
169+
font-size:11px;
170+
}
171+
172+
hr {
173+
border:0;
174+
background:#e5e5e5;
175+
height:1px;
176+
margin:0 0 20px;
177+
}
178+
179+
footer {
180+
width:270px;
181+
float:left;
182+
position:fixed;
183+
bottom:50px;
184+
}
185+
186+
.ecg th,
187+
.ecg td {
188+
text-align: center;
189+
}
190+
191+
@media print, screen and (max-width: 960px) {
192+
193+
div.wrapper {
194+
width:auto;
195+
margin:0;
196+
}
197+
198+
header, section, footer {
199+
float:none;
200+
position:static;
201+
width:auto;
202+
}
203+
204+
header {
205+
padding-right:320px;
206+
}
207+
208+
section {
209+
border:1px solid #e5e5e5;
210+
border-width:1px 0;
211+
padding:20px 0;
212+
margin:0 0 20px;
213+
}
214+
215+
header a small {
216+
display:inline;
217+
}
218+
219+
header ul {
220+
position:absolute;
221+
right:50px;
222+
top:52px;
223+
}
224+
}
225+
226+
@media print, screen and (max-width: 720px) {
227+
body {
228+
word-wrap:break-word;
229+
}
230+
231+
header {
232+
padding:0;
233+
}
234+
235+
header ul, header p.view {
236+
position:static;
237+
}
238+
239+
pre, code {
240+
word-wrap:normal;
241+
}
242+
}
243+
244+
@media print, screen and (max-width: 480px) {
245+
body {
246+
padding:15px;
247+
}
248+
249+
header ul {
250+
display:none;
251+
}
252+
}
253+
254+
@media print {
255+
body {
256+
padding:0.4in;
257+
font-size:12pt;
258+
color:#444;
259+
}
260+
}

0 commit comments

Comments
 (0)