jekyll-theme-architect 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,231 @@
1
+ ---
2
+ ---
3
+
4
+ html, body, div, span, applet, object, iframe,
5
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
6
+ a, abbr, acronym, address, big, cite, code,
7
+ del, dfn, em, img, ins, kbd, q, s, samp,
8
+ small, strike, strong, sub, sup, tt, var,
9
+ b, u, i, center,
10
+ dl, dt, dd, ol, ul, li,
11
+ fieldset, form, label, legend,
12
+ table, caption, tbody, tfoot, thead, tr, th, td,
13
+ article, aside, canvas, details, embed,
14
+ figure, figcaption, footer, header, hgroup,
15
+ menu, nav, output, ruby, section, summary,
16
+ time, mark, audio, video {
17
+ padding: 0;
18
+ margin: 0;
19
+ font: inherit;
20
+ font-size: 100%;
21
+ vertical-align: baseline;
22
+ border: 0;
23
+ }
24
+ /* HTML5 display-role reset for older browsers */
25
+ article, aside, details, figcaption, figure,
26
+ footer, header, hgroup, menu, nav, section {
27
+ display: block;
28
+ }
29
+ body {
30
+ line-height: 1;
31
+ }
32
+ ol, ul {
33
+ list-style: none;
34
+ }
35
+ blockquote, q {
36
+ quotes: none;
37
+ }
38
+ blockquote:before, blockquote:after,
39
+ q:before, q:after {
40
+ content: '';
41
+ content: none;
42
+ }
43
+ table {
44
+ border-spacing: 0;
45
+ border-collapse: collapse;
46
+ }
47
+ body {
48
+ font-family: 'Helvetica Neue', Helvetica, Arial, serif;
49
+ font-size: 13px;
50
+ line-height: 1.5;
51
+ color: #000;
52
+ }
53
+
54
+ a {
55
+ font-weight: bold;
56
+ color: #d5000d;
57
+ }
58
+
59
+ header {
60
+ padding-top: 35px;
61
+ padding-bottom: 10px;
62
+ }
63
+
64
+ header h1 {
65
+ font-size: 48px;
66
+ font-weight: bold;
67
+ line-height: 1.2;
68
+ color: #303030;
69
+ letter-spacing: -1px;
70
+ }
71
+
72
+ header h2 {
73
+ font-size: 24px;
74
+ font-weight: normal;
75
+ line-height: 1.3;
76
+ color: #aaa;
77
+ letter-spacing: -1px;
78
+ }
79
+ #downloads {
80
+ display: none;
81
+ }
82
+ #main_content {
83
+ padding-top: 20px;
84
+ }
85
+
86
+ code, pre {
87
+ margin-bottom: 30px;
88
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
89
+ font-size: 12px;
90
+ color: #222;
91
+ }
92
+
93
+ code {
94
+ padding: 0 3px;
95
+ }
96
+
97
+ pre {
98
+ padding: 20px;
99
+ overflow: auto;
100
+ border: solid 1px #ddd;
101
+ }
102
+ pre code {
103
+ padding: 0;
104
+ }
105
+
106
+ ul, ol, dl {
107
+ margin-bottom: 20px;
108
+ }
109
+
110
+
111
+ /* COMMON STYLES */
112
+
113
+ table {
114
+ width: 100%;
115
+ border: 1px solid #ebebeb;
116
+ }
117
+
118
+ th {
119
+ font-weight: 500;
120
+ }
121
+
122
+ td {
123
+ font-weight: 300;
124
+ text-align: center;
125
+ border: 1px solid #ebebeb;
126
+ }
127
+
128
+ form {
129
+ padding: 20px;
130
+ background: #f2f2f2;
131
+
132
+ }
133
+
134
+
135
+ /* GENERAL ELEMENT TYPE STYLES */
136
+
137
+ h1 {
138
+ font-size: 2.8em;
139
+ }
140
+
141
+ h2 {
142
+ margin-bottom: 8px;
143
+ font-size: 22px;
144
+ font-weight: bold;
145
+ color: #303030;
146
+ }
147
+
148
+ h3 {
149
+ margin-bottom: 8px;
150
+ font-size: 18px;
151
+ font-weight: bold;
152
+ color: #d5000d;
153
+ }
154
+
155
+ h4 {
156
+ font-size: 16px;
157
+ font-weight: bold;
158
+ color: #303030;
159
+ }
160
+
161
+ h5 {
162
+ font-size: 1em;
163
+ color: #303030;
164
+ }
165
+
166
+ h6 {
167
+ font-size: .8em;
168
+ color: #303030;
169
+ }
170
+
171
+ p {
172
+ margin-bottom: 20px;
173
+ font-weight: 300;
174
+ }
175
+
176
+ a {
177
+ text-decoration: none;
178
+ }
179
+
180
+ p a {
181
+ font-weight: 400;
182
+ }
183
+
184
+ blockquote {
185
+ padding: 0 0 0 30px;
186
+ margin-bottom: 20px;
187
+ font-size: 1.6em;
188
+ border-left: 10px solid #e9e9e9;
189
+ }
190
+
191
+ ul li {
192
+ padding-left: 20px;
193
+ list-style-position: inside;
194
+ list-style: disc;
195
+ }
196
+
197
+ ol li {
198
+ padding-left: 3px;
199
+ list-style-position: inside;
200
+ list-style: decimal;
201
+ }
202
+
203
+ dl dd {
204
+ font-style: italic;
205
+ font-weight: 100;
206
+ }
207
+
208
+ footer {
209
+ padding-top: 20px;
210
+ padding-bottom: 30px;
211
+ margin-top: 40px;
212
+ font-size: 13px;
213
+ color: #aaa;
214
+ }
215
+
216
+ footer a {
217
+ color: #666;
218
+ }
219
+
220
+ /* MISC */
221
+ .clearfix:after {
222
+ display: block;
223
+ height: 0;
224
+ clear: both;
225
+ visibility: hidden;
226
+ content: '.';
227
+ }
228
+
229
+ .clearfix {display: inline-block;}
230
+ * html .clearfix {height: 1%;}
231
+ .clearfix {display: block;}
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'jekyll-theme-architect';
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-architect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jason Long
8
+ - GitHub, Inc.
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2016-12-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: jekyll
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.3'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '3.3'
28
+ description:
29
+ email:
30
+ - opensource+jekyll-theme-architect@github.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - LICENSE
36
+ - README.md
37
+ - _layouts/default.html
38
+ - _sass/jekyll-theme-architect.scss
39
+ - _sass/normalize.scss
40
+ - _sass/rouge-github.scss
41
+ - assets/css/print.scss
42
+ - assets/css/style.scss
43
+ - assets/images/body-bg.jpg
44
+ - assets/images/download-button.png
45
+ - assets/images/github-button.png
46
+ - assets/images/header-bg.jpg
47
+ - assets/images/highlight-bg.jpg
48
+ - assets/images/sidebar-bg.jpg
49
+ homepage: https://github.com/pages-themes/architect
50
+ licenses: []
51
+ metadata: {}
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubyforge_project:
68
+ rubygems_version: 2.5.2
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: Architect is a Jekyll theme for GitHub Pages
72
+ test_files: []