Skip to content

Commit 85cbe66

Browse files
committed
Initial
1 parent 9214fbc commit 85cbe66

20 files changed

+901
-5
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_size = 4
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Include your project-specific ignores in this file
2+
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files

404.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Page Not Found</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<style>
8+
9+
* {
10+
line-height: 1.2;
11+
margin: 0;
12+
}
13+
14+
html {
15+
color: #888;
16+
display: table;
17+
font-family: sans-serif;
18+
height: 100%;
19+
text-align: center;
20+
width: 100%;
21+
}
22+
23+
body {
24+
display: table-cell;
25+
vertical-align: middle;
26+
margin: 2em auto;
27+
}
28+
29+
h1 {
30+
color: #555;
31+
font-size: 2em;
32+
font-weight: 400;
33+
}
34+
35+
p {
36+
margin: 0 auto;
37+
width: 280px;
38+
}
39+
40+
@media only screen and (max-width: 280px) {
41+
42+
body, p {
43+
width: 95%;
44+
}
45+
46+
h1 {
47+
font-size: 1.5em;
48+
margin: 0 0 0.3em;
49+
}
50+
51+
}
52+
53+
</style>
54+
</head>
55+
<body>
56+
<h1>Page Not Found</h1>
57+
<p>Sorry, but the page you were trying to view does not exist.</p>
58+
</body>
59+
</html>
60+
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->

apple-touch-icon.png

8.21 KB
Loading

browserconfig.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Please read: https://msdn.microsoft.com/en-us/library/ie/dn455106.aspx -->
3+
<browserconfig>
4+
<msapplication>
5+
<tile>
6+
<square70x70logo src="tile.png"/>
7+
<square150x150logo src="tile.png"/>
8+
<wide310x150logo src="tile-wide.png"/>
9+
<square310x310logo src="tile.png"/>
10+
</tile>
11+
</msapplication>
12+
</browserconfig>

crossdomain.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
3+
<cross-domain-policy>
4+
<!-- Read this: https://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
5+
6+
<!-- Most restrictive policy: -->
7+
<site-control permitted-cross-domain-policies="none"/>
8+
9+
<!-- Least restrictive policy: -->
10+
<!--
11+
<site-control permitted-cross-domain-policies="all"/>
12+
<allow-access-from domain="*" to-ports="*" secure="false"/>
13+
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
14+
-->
15+
</cross-domain-policy>

css/main.css

Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,280 @@
1+
/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */
2+
3+
/*
4+
* What follows is the result of much research on cross-browser styling.
5+
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
6+
* Kroc Camen, and the H5BP dev community and team.
7+
*/
8+
9+
/* ==========================================================================
10+
Base styles: opinionated defaults
11+
========================================================================== */
12+
13+
html {
14+
color: #222;
15+
font-size: 1em;
16+
line-height: 1.4;
17+
}
18+
19+
/*
20+
* Remove text-shadow in selection highlight:
21+
* https://twitter.com/miketaylr/status/12228805301
22+
*
23+
* These selection rule sets have to be separate.
24+
* Customize the background color to match your design.
25+
*/
26+
27+
::-moz-selection {
28+
background: #b3d4fc;
29+
text-shadow: none;
30+
}
31+
32+
::selection {
33+
background: #b3d4fc;
34+
text-shadow: none;
35+
}
36+
37+
/*
38+
* A better looking default horizontal rule
39+
*/
40+
41+
hr {
42+
display: block;
43+
height: 1px;
44+
border: 0;
45+
border-top: 1px solid #ccc;
46+
margin: 1em 0;
47+
padding: 0;
48+
}
49+
50+
/*
51+
* Remove the gap between audio, canvas, iframes,
52+
* images, videos and the bottom of their containers:
53+
* https://github.com/h5bp/html5-boilerplate/issues/440
54+
*/
55+
56+
audio,
57+
canvas,
58+
iframe,
59+
img,
60+
svg,
61+
video {
62+
vertical-align: middle;
63+
}
64+
65+
/*
66+
* Remove default fieldset styles.
67+
*/
68+
69+
fieldset {
70+
border: 0;
71+
margin: 0;
72+
padding: 0;
73+
}
74+
75+
/*
76+
* Allow only vertical resizing of textareas.
77+
*/
78+
79+
textarea {
80+
resize: vertical;
81+
}
82+
83+
/* ==========================================================================
84+
Browser Upgrade Prompt
85+
========================================================================== */
86+
87+
.browserupgrade {
88+
margin: 0.2em 0;
89+
background: #ccc;
90+
color: #000;
91+
padding: 0.2em 0;
92+
}
93+
94+
/* ==========================================================================
95+
Author's custom styles
96+
========================================================================== */
97+
98+
99+
100+
101+
102+
103+
104+
105+
106+
107+
108+
109+
110+
111+
112+
113+
114+
/* ==========================================================================
115+
Helper classes
116+
========================================================================== */
117+
118+
/*
119+
* Hide visually and from screen readers:
120+
*/
121+
122+
.hidden {
123+
display: none !important;
124+
}
125+
126+
/*
127+
* Hide only visually, but have it available for screen readers:
128+
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
129+
*/
130+
131+
.visuallyhidden {
132+
border: 0;
133+
clip: rect(0 0 0 0);
134+
height: 1px;
135+
margin: -1px;
136+
overflow: hidden;
137+
padding: 0;
138+
position: absolute;
139+
width: 1px;
140+
}
141+
142+
/*
143+
* Extends the .visuallyhidden class to allow the element
144+
* to be focusable when navigated to via the keyboard:
145+
* https://www.drupal.org/node/897638
146+
*/
147+
148+
.visuallyhidden.focusable:active,
149+
.visuallyhidden.focusable:focus {
150+
clip: auto;
151+
height: auto;
152+
margin: 0;
153+
overflow: visible;
154+
position: static;
155+
width: auto;
156+
}
157+
158+
/*
159+
* Hide visually and from screen readers, but maintain layout
160+
*/
161+
162+
.invisible {
163+
visibility: hidden;
164+
}
165+
166+
/*
167+
* Clearfix: contain floats
168+
*
169+
* For modern browsers
170+
* 1. The space content is one way to avoid an Opera bug when the
171+
* `contenteditable` attribute is included anywhere else in the document.
172+
* Otherwise it causes space to appear at the top and bottom of elements
173+
* that receive the `clearfix` class.
174+
* 2. The use of `table` rather than `block` is only necessary if using
175+
* `:before` to contain the top-margins of child elements.
176+
*/
177+
178+
.clearfix:before,
179+
.clearfix:after {
180+
content: " "; /* 1 */
181+
display: table; /* 2 */
182+
}
183+
184+
.clearfix:after {
185+
clear: both;
186+
}
187+
188+
/* ==========================================================================
189+
EXAMPLE Media Queries for Responsive Design.
190+
These examples override the primary ('mobile first') styles.
191+
Modify as content requires.
192+
========================================================================== */
193+
194+
@media only screen and (min-width: 35em) {
195+
/* Style adjustments for viewports that meet the condition */
196+
}
197+
198+
@media print,
199+
(-webkit-min-device-pixel-ratio: 1.25),
200+
(min-resolution: 1.25dppx),
201+
(min-resolution: 120dpi) {
202+
/* Style adjustments for high resolution devices */
203+
}
204+
205+
/* ==========================================================================
206+
Print styles.
207+
Inlined to avoid the additional HTTP request:
208+
http://www.phpied.com/delay-loading-your-print-css/
209+
========================================================================== */
210+
211+
@media print {
212+
*,
213+
*:before,
214+
*:after {
215+
background: transparent !important;
216+
color: #000 !important; /* Black prints faster:
217+
http://www.sanbeiji.com/archives/953 */
218+
box-shadow: none !important;
219+
text-shadow: none !important;
220+
}
221+
222+
a,
223+
a:visited {
224+
text-decoration: underline;
225+
}
226+
227+
a[href]:after {
228+
content: " (" attr(href) ")";
229+
}
230+
231+
abbr[title]:after {
232+
content: " (" attr(title) ")";
233+
}
234+
235+
/*
236+
* Don't show links that are fragment identifiers,
237+
* or use the `javascript:` pseudo protocol
238+
*/
239+
240+
a[href^="#"]:after,
241+
a[href^="javascript:"]:after {
242+
content: "";
243+
}
244+
245+
pre,
246+
blockquote {
247+
border: 1px solid #999;
248+
page-break-inside: avoid;
249+
}
250+
251+
/*
252+
* Printing Tables:
253+
* http://css-discuss.incutio.com/wiki/Printing_Tables
254+
*/
255+
256+
thead {
257+
display: table-header-group;
258+
}
259+
260+
tr,
261+
img {
262+
page-break-inside: avoid;
263+
}
264+
265+
img {
266+
max-width: 100% !important;
267+
}
268+
269+
p,
270+
h2,
271+
h3 {
272+
orphans: 3;
273+
widows: 3;
274+
}
275+
276+
h2,
277+
h3 {
278+
page-break-after: avoid;
279+
}
280+
}

0 commit comments

Comments
 (0)