Skip to content

Commit 915f532

Browse files
author
pinkiepiedevops
committed
page for commitmas' past
1 parent ffcd970 commit 915f532

30 files changed

+3267
-0
lines changed

Diff for: LICENSE.txt

+63
Large diffs are not rendered by default.

Diff for: css/font-awesome.min.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: css/skel.css

+247
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,247 @@
1+
/* Resets (http://meyerweb.com/eric/tools/css/reset/ | v2.0 | 20110126 | License: none (public domain)) */
2+
3+
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}
4+
5+
/* Box Model */
6+
7+
*, *:before, *:after {
8+
-moz-box-sizing: border-box;
9+
-webkit-box-sizing: border-box;
10+
box-sizing: border-box;
11+
}
12+
13+
/* Container */
14+
15+
.container {
16+
margin-left: auto;
17+
margin-right: auto;
18+
19+
/* width: (containers) */
20+
width: 1200px;
21+
}
22+
23+
/* Modifiers */
24+
25+
/* 125% */
26+
.container.\31 25\25 {
27+
width: 100%;
28+
29+
/* max-width: (containers * 1.25) */
30+
max-width: 1500px;
31+
32+
/* min-width: (containers) */
33+
min-width: 1200px;
34+
}
35+
36+
/* 75% */
37+
.container.\37 5\25 {
38+
39+
/* width: (containers * 0.75) */
40+
width: 900px;
41+
42+
}
43+
44+
/* 50% */
45+
.container.\35 0\25 {
46+
47+
/* width: (containers * 0.50) */
48+
width: 600px;
49+
50+
}
51+
52+
/* 25% */
53+
.container.\32 5\25 {
54+
55+
/* width: (containers * 0.25) */
56+
width: 300px;
57+
58+
}
59+
60+
/* Grid */
61+
62+
.row {
63+
border-bottom: solid 1px transparent;
64+
}
65+
66+
.row > * {
67+
float: left;
68+
}
69+
70+
.row:after, .row:before {
71+
content: '';
72+
display: block;
73+
clear: both;
74+
height: 0;
75+
}
76+
77+
.row.uniform > * > :first-child {
78+
margin-top: 0;
79+
}
80+
81+
.row.uniform > * > :last-child {
82+
margin-bottom: 0;
83+
}
84+
85+
/* Gutters */
86+
87+
/* Normal */
88+
89+
.row > * {
90+
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */
91+
padding: 0 0 0 2em;
92+
}
93+
94+
.row {
95+
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */
96+
margin: 0 0 -1px -2em;
97+
}
98+
99+
.row.uniform > * {
100+
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */
101+
padding: 2em 0 0 2em;
102+
}
103+
104+
.row.uniform {
105+
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */
106+
margin: -2em 0 -1px -2em;
107+
}
108+
109+
/* 200% */
110+
111+
.row.\32 00\25 > * {
112+
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */
113+
padding: 0 0 0 4em;
114+
}
115+
116+
.row.\32 00\25 {
117+
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */
118+
margin: 0 0 -1px -4em;
119+
}
120+
121+
.row.uniform.\32 00\25 > * {
122+
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */
123+
padding: 4em 0 0 4em;
124+
}
125+
126+
.row.uniform.\32 00\25 {
127+
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */
128+
margin: -4em 0 -1px -4em;
129+
}
130+
131+
/* 150% */
132+
133+
.row.\31 50\25 > * {
134+
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */
135+
padding: 0 0 0 1.5em;
136+
}
137+
138+
.row.\31 50\25 {
139+
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */
140+
margin: 0 0 -1px -1.5em;
141+
}
142+
143+
.row.uniform.\31 50\25 > * {
144+
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */
145+
padding: 1.5em 0 0 1.5em;
146+
}
147+
148+
.row.uniform.\31 50\25 {
149+
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */
150+
margin: -1.5em 0 -1px -1.5em;
151+
}
152+
153+
/* 50% */
154+
155+
.row.\35 0\25 > * {
156+
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */
157+
padding: 0 0 0 1em;
158+
}
159+
160+
.row.\35 0\25 {
161+
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */
162+
margin: 0 0 -1px -1em;
163+
}
164+
165+
.row.uniform.\35 0\25 > * {
166+
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */
167+
padding: 1em 0 0 1em;
168+
}
169+
170+
.row.uniform.\35 0\25 {
171+
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */
172+
margin: -1em 0 -1px -1em;
173+
}
174+
175+
/* 25% */
176+
177+
.row.\32 5\25 > * {
178+
/* padding: (gutters.horizontal) 0 0 (gutters.vertical) */
179+
padding: 0 0 0 0.5em;
180+
}
181+
182+
.row.\32 5\25 {
183+
/* margin: -(gutters.horizontal) 0 -1px -(gutters.vertical) */
184+
margin: 0 0 -1px -0.5em;
185+
}
186+
187+
.row.uniform.\32 5\25 > * {
188+
/* padding: (gutters.vertical) 0 0 (gutters.vertical) */
189+
padding: 0.5em 0 0 0.5em;
190+
}
191+
192+
.row.uniform.\32 5\25 {
193+
/* margin: -(gutters.vertical) 0 -1px -(gutters.vertical) */
194+
margin: -0.5em 0 -1px -0.5em;
195+
}
196+
197+
/* 0% */
198+
199+
.row.\30 \25 > * {
200+
padding: 0;
201+
}
202+
203+
.row.\30 \25 {
204+
margin: 0 0 -1px 0;
205+
}
206+
207+
/* Cells */
208+
209+
.\31 2u, .\31 2u\24 { width: 100%; clear: none; margin-left: 0; }
210+
.\31 1u, .\31 1u\24 { width: 91.6666666667%; clear: none; margin-left: 0; }
211+
.\31 0u, .\31 0u\24 { width: 83.3333333333%; clear: none; margin-left: 0; }
212+
.\39 u, .\39 u\24 { width: 75%; clear: none; margin-left: 0; }
213+
.\38 u, .\38 u\24 { width: 66.6666666667%; clear: none; margin-left: 0; }
214+
.\37 u, .\37 u\24 { width: 58.3333333333%; clear: none; margin-left: 0; }
215+
.\36 u, .\36 u\24 { width: 50%; clear: none; margin-left: 0; }
216+
.\35 u, .\35 u\24 { width: 41.6666666667%; clear: none; margin-left: 0; }
217+
.\34 u, .\34 u\24 { width: 33.3333333333%; clear: none; margin-left: 0; }
218+
.\33 u, .\33 u\24 { width: 25%; clear: none; margin-left: 0; }
219+
.\32 u, .\32 u\24 { width: 16.6666666667%; clear: none; margin-left: 0; }
220+
.\31 u, .\31 u\24 { width: 8.3333333333%; clear: none; margin-left: 0; }
221+
222+
.\31 2u\24 + *,
223+
.\31 1u\24 + *,
224+
.\31 0u\24 + *,
225+
.\39 u\24 + *,
226+
.\38 u\24 + *,
227+
.\37 u\24 + *,
228+
.\36 u\24 + *,
229+
.\35 u\24 + *,
230+
.\34 u\24 + *,
231+
.\33 u\24 + *,
232+
.\32 u\24 + *,
233+
.\31 u\24 + * {
234+
clear: left;
235+
}
236+
237+
.\-11u { margin-left: 91.6666666667% }
238+
.\-10u { margin-left: 83.3333333333% }
239+
.\-9u { margin-left: 75% }
240+
.\-8u { margin-left: 66.6666666667% }
241+
.\-7u { margin-left: 58.3333333333% }
242+
.\-6u { margin-left: 50% }
243+
.\-5u { margin-left: 41.6666666667% }
244+
.\-4u { margin-left: 33.3333333333% }
245+
.\-3u { margin-left: 25% }
246+
.\-2u { margin-left: 16.6666666667% }
247+
.\-1u { margin-left: 8.3333333333% }

Diff for: css/style-large.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*
2+
Transit by TEMPLATED
3+
templated.co @templatedco
4+
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
5+
*/

Diff for: css/style-medium.css

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
@charset "UTF-8";
2+
3+
/*
4+
Transit by TEMPLATED
5+
templated.co @templatedco
6+
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
7+
*/
8+
9+
/* Basic */
10+
11+
body, input, select, textarea {
12+
font-size: 12pt;
13+
}
14+
15+
header.major h2 {
16+
font-size: 2.25em;
17+
}
18+
19+
header.major p {
20+
font-size: 1.25em;
21+
}
22+
23+
/* Header */
24+
25+
#skel-layers-wrapper {
26+
padding-top: 0;
27+
}
28+
29+
#header {
30+
display: none;
31+
}
32+
33+
/* Banner */
34+
35+
#banner {
36+
padding: 6em 0em 6em;
37+
}
38+
39+
#banner h2 {
40+
font-size: 2.25em;
41+
}
42+
43+
#banner p {
44+
font-size: 1.25em;
45+
}
46+
47+
/* Layers */
48+
49+
#navButton .toggle {
50+
text-decoration: none;
51+
height: 100%;
52+
left: 0;
53+
position: absolute;
54+
top: 0;
55+
width: 100%;
56+
}
57+
58+
#navButton .toggle:before {
59+
content: "";
60+
-moz-osx-font-smoothing: grayscale;
61+
-webkit-font-smoothing: antialiased;
62+
font-family: FontAwesome;
63+
font-style: normal;
64+
font-weight: normal;
65+
text-transform: none !important;
66+
}
67+
68+
#navButton .toggle:before {
69+
background: rgba(144, 144, 144, 0.65);
70+
border-radius: 4px;
71+
color: #fff;
72+
display: block;
73+
font-size: 16px;
74+
height: 2.25em;
75+
left: 0.5em;
76+
line-height: 2.25em;
77+
position: absolute;
78+
text-align: center;
79+
top: 0.5em;
80+
width: 3.5em;
81+
}
82+
83+
#navPanel {
84+
background: rgba(255, 255, 255, 0.975);
85+
color: #444;
86+
border-right: solid 1px rgba(144, 144, 144, 0.25);
87+
box-shadow: 0.5em 0 2em 0 rgba(0, 0, 0, 0.125);
88+
}
89+
90+
#navPanel nav {
91+
padding: 0.5em 1.25em;
92+
}
93+
94+
#navPanel nav ul {
95+
list-style: none;
96+
margin: 0;
97+
padding: 0;
98+
}
99+
100+
#navPanel nav ul li {
101+
padding: 0;
102+
}
103+
104+
#navPanel nav ul li:first-child a:not(.button), #navPanel nav ul li:first-child span:not(.button) {
105+
border-top: 0;
106+
}
107+
108+
#navPanel nav ul li a.button, #navPanel nav ul li span.button {
109+
margin-top: 0.5em;
110+
}
111+
112+
#navPanel nav ul li a:not(.button), #navPanel nav ul li span:not(.button) {
113+
border-top: 1px solid rgba(0, 0, 0, 0.125);
114+
display: block;
115+
padding: 0.75em 0;
116+
text-decoration: none;
117+
}
118+
119+
#navPanel nav .button {
120+
width: 100%;
121+
}
122+
123+
/* Footer */
124+
125+
#footer .copyright {
126+
margin-top: 0;
127+
text-align: center;
128+
}
129+
130+
#footer .icons {
131+
text-align: center;
132+
}

0 commit comments

Comments
 (0)