kimmy-site-theme 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +42 -0
- data/_layouts/default.html +70 -0
- data/_layouts/page.html +6 -0
- data/_layouts/post.html +14 -0
- data/_sass/fonts.scss +55 -0
- data/_sass/jekyll-theme-minimal.scss +281 -0
- data/_sass/rouge-github.scss +209 -0
- data/assets/css/style.scss +4 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg +336 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff +0 -0
- data/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg +334 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff +0 -0
- data/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg +337 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff +0 -0
- data/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg +335 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff +0 -0
- data/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 +0 -0
- data/assets/js/scale.fix.js +27 -0
- metadata +144 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e3f9166a86b9e81db84ee3b45563a4f335389f55
|
4
|
+
data.tar.gz: 7b4dd273374d4989a2ab025cbb83e96ce01e3545
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 97391f2b675ee37883ed2b7ecf59252bce9a9805de0f7d828afda12883c0ed190fc3b56685601438561ad39ec1c899f16a0ed2e8edc88ecb8f278db603ca8a30
|
7
|
+
data.tar.gz: a36a9da2c9e04461f9276ec371ed2936d2921b8098744b8de0a4019ade78c00fb4df231ed9fd7d68cd2e301f2099135bcf306f2e0d272fe906395e1150ac5bb0
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 Kimmy Leo
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# kimmy-site-theme
|
2
|
+
|
3
|
+
This is a Jekyll theme specifically for my sites. Based on `jekyll-theme-minimal`.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "kimmy-site-theme"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: kimmy-site-theme
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install kimmy-site-theme
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kenpusney/kimmy-site-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
30
|
+
|
31
|
+
## Development
|
32
|
+
|
33
|
+
To set up your environment to develop this theme, run `bundle install`.
|
34
|
+
|
35
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
36
|
+
|
37
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
38
|
+
|
39
|
+
## License
|
40
|
+
|
41
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
42
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
<!doctype html>
|
4
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
5
|
+
<head>
|
6
|
+
<meta charset="utf-8">
|
7
|
+
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
8
|
+
|
9
|
+
{% seo %}
|
10
|
+
|
11
|
+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
12
|
+
<meta name="viewport" content="width=device-width">
|
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
|
+
<a href="{{ site.github.url }}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a>
|
21
|
+
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
22
|
+
|
23
|
+
{% if site.github.is_project_page %}
|
24
|
+
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ github_name }}</small></a></p>
|
25
|
+
{% endif %}
|
26
|
+
|
27
|
+
{% if site.github.is_user_page %}
|
28
|
+
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
|
29
|
+
{% endif %}
|
30
|
+
|
31
|
+
{% if site.show_downloads %}
|
32
|
+
<ul>
|
33
|
+
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
|
34
|
+
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
|
35
|
+
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
|
36
|
+
</ul>
|
37
|
+
{% endif %}
|
38
|
+
{% if page.toc %}
|
39
|
+
{{ content | toc_only }}
|
40
|
+
{% endif %}
|
41
|
+
</header>
|
42
|
+
<section>
|
43
|
+
|
44
|
+
{{ content | inject_anchors }}
|
45
|
+
|
46
|
+
</section>
|
47
|
+
<footer>
|
48
|
+
{% if site.github.is_project_page %}
|
49
|
+
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
|
50
|
+
{% endif %}
|
51
|
+
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
|
52
|
+
</footer>
|
53
|
+
</div>
|
54
|
+
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
|
55
|
+
|
56
|
+
|
57
|
+
{% if site.google_analytics %}
|
58
|
+
<script>
|
59
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
60
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
61
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
62
|
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
63
|
+
|
64
|
+
ga('create', '{{ site.google_analytics }}', 'auto');
|
65
|
+
ga('send', 'pageview');
|
66
|
+
</script>
|
67
|
+
{% endif %}
|
68
|
+
</body>
|
69
|
+
</html>
|
70
|
+
|
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<small>{{ page.date | date: "%-d %B %Y" }}</small>
|
6
|
+
<h1>{{ page.title }}</h1>
|
7
|
+
|
8
|
+
<p class="view">by {{ page.author | default: site.author }}</p>
|
9
|
+
|
10
|
+
{{content}}
|
11
|
+
|
12
|
+
{% if page.tags %}
|
13
|
+
<small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small>
|
14
|
+
{% endif %}
|
data/_sass/fonts.scss
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'Noto Sans';
|
3
|
+
font-weight: 400;
|
4
|
+
font-style: normal;
|
5
|
+
src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot');
|
6
|
+
src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'),
|
7
|
+
local('Noto Sans'),
|
8
|
+
local('Noto-Sans-regular'),
|
9
|
+
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'),
|
10
|
+
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'),
|
11
|
+
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'),
|
12
|
+
url('../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg');
|
13
|
+
}
|
14
|
+
|
15
|
+
@font-face {
|
16
|
+
font-family: 'Noto Sans';
|
17
|
+
font-weight: 700;
|
18
|
+
font-style: normal;
|
19
|
+
src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot');
|
20
|
+
src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'),
|
21
|
+
local('Noto Sans Bold'),
|
22
|
+
local('Noto-Sans-700'),
|
23
|
+
url('../fonts/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'),
|
24
|
+
url('../fonts/Noto-Sans-700/Noto-Sans-700.woff') format('woff'),
|
25
|
+
url('../fonts/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'),
|
26
|
+
url('../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg');
|
27
|
+
}
|
28
|
+
|
29
|
+
@font-face {
|
30
|
+
font-family: 'Noto Sans';
|
31
|
+
font-weight: 400;
|
32
|
+
font-style: italic;
|
33
|
+
src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot');
|
34
|
+
src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix') format('embedded-opentype'),
|
35
|
+
local('Noto Sans Italic'),
|
36
|
+
local('Noto-Sans-italic'),
|
37
|
+
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2') format('woff2'),
|
38
|
+
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff') format('woff'),
|
39
|
+
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf') format('truetype'),
|
40
|
+
url('../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans') format('svg');
|
41
|
+
}
|
42
|
+
|
43
|
+
@font-face {
|
44
|
+
font-family: 'Noto Sans';
|
45
|
+
font-weight: 700;
|
46
|
+
font-style: italic;
|
47
|
+
src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot');
|
48
|
+
src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix') format('embedded-opentype'),
|
49
|
+
local('Noto Sans Bold Italic'),
|
50
|
+
local('Noto-Sans-700italic'),
|
51
|
+
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2') format('woff2'),
|
52
|
+
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff') format('woff'),
|
53
|
+
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf') format('truetype'),
|
54
|
+
url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans') format('svg');
|
55
|
+
}
|
@@ -0,0 +1,281 @@
|
|
1
|
+
@import "fonts";
|
2
|
+
@import "rouge-github";
|
3
|
+
|
4
|
+
body {
|
5
|
+
background-color: #fff;
|
6
|
+
padding:50px;
|
7
|
+
font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
8
|
+
color:#727272;
|
9
|
+
font-weight:400;
|
10
|
+
}
|
11
|
+
|
12
|
+
h1, h2, h3, h4, h5, h6 {
|
13
|
+
color:#222;
|
14
|
+
margin:0 0 20px;
|
15
|
+
}
|
16
|
+
|
17
|
+
p, ul, ol, table, pre, dl {
|
18
|
+
margin:0 0 20px;
|
19
|
+
}
|
20
|
+
|
21
|
+
h1, h2, h3 {
|
22
|
+
line-height:1.1;
|
23
|
+
}
|
24
|
+
|
25
|
+
h1 {
|
26
|
+
font-size:28px;
|
27
|
+
}
|
28
|
+
|
29
|
+
h2 {
|
30
|
+
color:#393939;
|
31
|
+
}
|
32
|
+
|
33
|
+
h3, h4, h5, h6 {
|
34
|
+
color:#494949;
|
35
|
+
}
|
36
|
+
|
37
|
+
a {
|
38
|
+
color:#267CB9;
|
39
|
+
text-decoration:none;
|
40
|
+
}
|
41
|
+
|
42
|
+
a:hover, a:focus {
|
43
|
+
color:#069;
|
44
|
+
font-weight: bold;
|
45
|
+
}
|
46
|
+
|
47
|
+
a small {
|
48
|
+
font-size:11px;
|
49
|
+
color:#777;
|
50
|
+
margin-top:-0.3em;
|
51
|
+
display:block;
|
52
|
+
}
|
53
|
+
|
54
|
+
a:hover small {
|
55
|
+
color:#777;
|
56
|
+
}
|
57
|
+
|
58
|
+
.wrapper {
|
59
|
+
width:860px;
|
60
|
+
margin:0 auto;
|
61
|
+
}
|
62
|
+
|
63
|
+
blockquote {
|
64
|
+
border-left:1px solid #e5e5e5;
|
65
|
+
margin:0;
|
66
|
+
padding:0 0 0 20px;
|
67
|
+
font-style:italic;
|
68
|
+
}
|
69
|
+
|
70
|
+
code, pre {
|
71
|
+
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace;
|
72
|
+
color:#333;
|
73
|
+
}
|
74
|
+
|
75
|
+
pre {
|
76
|
+
padding:8px 15px;
|
77
|
+
background: #f8f8f8;
|
78
|
+
border-radius:5px;
|
79
|
+
border:1px solid #e5e5e5;
|
80
|
+
overflow-x: auto;
|
81
|
+
}
|
82
|
+
|
83
|
+
table {
|
84
|
+
width:100%;
|
85
|
+
border-collapse:collapse;
|
86
|
+
}
|
87
|
+
|
88
|
+
th, td {
|
89
|
+
text-align:left;
|
90
|
+
padding:5px 10px;
|
91
|
+
border-bottom:1px solid #e5e5e5;
|
92
|
+
}
|
93
|
+
|
94
|
+
dt {
|
95
|
+
color:#444;
|
96
|
+
font-weight:700;
|
97
|
+
}
|
98
|
+
|
99
|
+
th {
|
100
|
+
color:#444;
|
101
|
+
}
|
102
|
+
|
103
|
+
img {
|
104
|
+
max-width:100%;
|
105
|
+
}
|
106
|
+
|
107
|
+
header {
|
108
|
+
width:270px;
|
109
|
+
float:left;
|
110
|
+
-webkit-font-smoothing:subpixel-antialiased;
|
111
|
+
}
|
112
|
+
|
113
|
+
// header ul {
|
114
|
+
// list-style:none;
|
115
|
+
// height:40px;
|
116
|
+
// padding:0;
|
117
|
+
// background: #f4f4f4;
|
118
|
+
// border-radius:5px;
|
119
|
+
// border:1px solid #e0e0e0;
|
120
|
+
// width:270px;
|
121
|
+
// }
|
122
|
+
|
123
|
+
// header li {
|
124
|
+
// width:89px;
|
125
|
+
// float:left;
|
126
|
+
// border-right:1px solid #e0e0e0;
|
127
|
+
// height:40px;
|
128
|
+
// }
|
129
|
+
|
130
|
+
// header li:first-child a {
|
131
|
+
// border-radius:5px 0 0 5px;
|
132
|
+
// }
|
133
|
+
|
134
|
+
// header li:last-child a {
|
135
|
+
// border-radius:0 5px 5px 0;
|
136
|
+
// }
|
137
|
+
|
138
|
+
// header ul a {
|
139
|
+
// line-height:1;
|
140
|
+
// color:#676767;
|
141
|
+
// display:block;
|
142
|
+
// padding-top:0.5em;
|
143
|
+
// }
|
144
|
+
|
145
|
+
// header ul a:hover, header ul a:focus {
|
146
|
+
// color:#675C5C;
|
147
|
+
// font-weight:bold;
|
148
|
+
// }
|
149
|
+
|
150
|
+
// header ul a:active {
|
151
|
+
// background-color:#f0f0f0;
|
152
|
+
// }
|
153
|
+
|
154
|
+
strong {
|
155
|
+
color:#222;
|
156
|
+
font-weight:700;
|
157
|
+
}
|
158
|
+
|
159
|
+
// header ul li + li + li {
|
160
|
+
// border-right:none;
|
161
|
+
// width:89px;
|
162
|
+
// }
|
163
|
+
|
164
|
+
// header ul a strong {
|
165
|
+
// font-size:14px;
|
166
|
+
// display:block;
|
167
|
+
// color:#222;
|
168
|
+
// }
|
169
|
+
|
170
|
+
ul.section-nav, ul.section-nav ul {
|
171
|
+
counter-reset: table-of-content;
|
172
|
+
list-style-type: none;
|
173
|
+
|
174
|
+
padding: 0;
|
175
|
+
margin: 0 0 0 1em;
|
176
|
+
}
|
177
|
+
|
178
|
+
ul.section-nav li::before {
|
179
|
+
counter-increment: table-of-content;
|
180
|
+
content: counters(table-of-content, ".") ". ";
|
181
|
+
}
|
182
|
+
|
183
|
+
section {
|
184
|
+
width:500px;
|
185
|
+
float:right;
|
186
|
+
padding-bottom:50px;
|
187
|
+
}
|
188
|
+
|
189
|
+
small {
|
190
|
+
font-size:11px;
|
191
|
+
}
|
192
|
+
|
193
|
+
hr {
|
194
|
+
border:0;
|
195
|
+
background:#e5e5e5;
|
196
|
+
height:1px;
|
197
|
+
margin:0 0 20px;
|
198
|
+
}
|
199
|
+
|
200
|
+
footer {
|
201
|
+
width:270px;
|
202
|
+
float:left;
|
203
|
+
position:fixed;
|
204
|
+
bottom:50px;
|
205
|
+
-webkit-font-smoothing:subpixel-antialiased;
|
206
|
+
}
|
207
|
+
|
208
|
+
@media print, screen and (max-width: 960px) {
|
209
|
+
|
210
|
+
div.wrapper {
|
211
|
+
width:auto;
|
212
|
+
margin:0;
|
213
|
+
}
|
214
|
+
|
215
|
+
header, section, footer {
|
216
|
+
float:none;
|
217
|
+
position:static;
|
218
|
+
width:auto;
|
219
|
+
}
|
220
|
+
|
221
|
+
header {
|
222
|
+
padding-right:320px;
|
223
|
+
}
|
224
|
+
|
225
|
+
section {
|
226
|
+
border:1px solid #e5e5e5;
|
227
|
+
border-width:1px 0;
|
228
|
+
padding:20px 0;
|
229
|
+
margin:0 0 20px;
|
230
|
+
}
|
231
|
+
|
232
|
+
header a small {
|
233
|
+
display:inline;
|
234
|
+
}
|
235
|
+
|
236
|
+
// header ul {
|
237
|
+
// position:absolute;
|
238
|
+
// right:50px;
|
239
|
+
// top:52px;
|
240
|
+
// }
|
241
|
+
}
|
242
|
+
|
243
|
+
@media print, screen and (max-width: 720px) {
|
244
|
+
body {
|
245
|
+
word-wrap:break-word;
|
246
|
+
}
|
247
|
+
|
248
|
+
header {
|
249
|
+
padding:0;
|
250
|
+
}
|
251
|
+
|
252
|
+
// header ul, header p.view {
|
253
|
+
// position:static;
|
254
|
+
// }
|
255
|
+
|
256
|
+
pre, code {
|
257
|
+
word-wrap:normal;
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
@media print, screen and (max-width: 480px) {
|
262
|
+
body {
|
263
|
+
padding:15px;
|
264
|
+
}
|
265
|
+
|
266
|
+
// header ul {
|
267
|
+
// width:99%;
|
268
|
+
// }
|
269
|
+
|
270
|
+
// header li, header ul li + li + li {
|
271
|
+
// width:33%;
|
272
|
+
// }
|
273
|
+
}
|
274
|
+
|
275
|
+
@media print {
|
276
|
+
body {
|
277
|
+
padding:0.4in;
|
278
|
+
font-size:12pt;
|
279
|
+
color:#444;
|
280
|
+
}
|
281
|
+
}
|
@@ -0,0 +1,209 @@
|
|
1
|
+
.highlight table td { padding: 5px; }
|
2
|
+
.highlight table pre { margin: 0; }
|
3
|
+
.highlight .cm {
|
4
|
+
color: #999988;
|
5
|
+
font-style: italic;
|
6
|
+
}
|
7
|
+
.highlight .cp {
|
8
|
+
color: #999999;
|
9
|
+
font-weight: bold;
|
10
|
+
}
|
11
|
+
.highlight .c1 {
|
12
|
+
color: #999988;
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
.highlight .cs {
|
16
|
+
color: #999999;
|
17
|
+
font-weight: bold;
|
18
|
+
font-style: italic;
|
19
|
+
}
|
20
|
+
.highlight .c, .highlight .cd {
|
21
|
+
color: #999988;
|
22
|
+
font-style: italic;
|
23
|
+
}
|
24
|
+
.highlight .err {
|
25
|
+
color: #a61717;
|
26
|
+
background-color: #e3d2d2;
|
27
|
+
}
|
28
|
+
.highlight .gd {
|
29
|
+
color: #000000;
|
30
|
+
background-color: #ffdddd;
|
31
|
+
}
|
32
|
+
.highlight .ge {
|
33
|
+
color: #000000;
|
34
|
+
font-style: italic;
|
35
|
+
}
|
36
|
+
.highlight .gr {
|
37
|
+
color: #aa0000;
|
38
|
+
}
|
39
|
+
.highlight .gh {
|
40
|
+
color: #999999;
|
41
|
+
}
|
42
|
+
.highlight .gi {
|
43
|
+
color: #000000;
|
44
|
+
background-color: #ddffdd;
|
45
|
+
}
|
46
|
+
.highlight .go {
|
47
|
+
color: #888888;
|
48
|
+
}
|
49
|
+
.highlight .gp {
|
50
|
+
color: #555555;
|
51
|
+
}
|
52
|
+
.highlight .gs {
|
53
|
+
font-weight: bold;
|
54
|
+
}
|
55
|
+
.highlight .gu {
|
56
|
+
color: #aaaaaa;
|
57
|
+
}
|
58
|
+
.highlight .gt {
|
59
|
+
color: #aa0000;
|
60
|
+
}
|
61
|
+
.highlight .kc {
|
62
|
+
color: #000000;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
.highlight .kd {
|
66
|
+
color: #000000;
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
69
|
+
.highlight .kn {
|
70
|
+
color: #000000;
|
71
|
+
font-weight: bold;
|
72
|
+
}
|
73
|
+
.highlight .kp {
|
74
|
+
color: #000000;
|
75
|
+
font-weight: bold;
|
76
|
+
}
|
77
|
+
.highlight .kr {
|
78
|
+
color: #000000;
|
79
|
+
font-weight: bold;
|
80
|
+
}
|
81
|
+
.highlight .kt {
|
82
|
+
color: #445588;
|
83
|
+
font-weight: bold;
|
84
|
+
}
|
85
|
+
.highlight .k, .highlight .kv {
|
86
|
+
color: #000000;
|
87
|
+
font-weight: bold;
|
88
|
+
}
|
89
|
+
.highlight .mf {
|
90
|
+
color: #009999;
|
91
|
+
}
|
92
|
+
.highlight .mh {
|
93
|
+
color: #009999;
|
94
|
+
}
|
95
|
+
.highlight .il {
|
96
|
+
color: #009999;
|
97
|
+
}
|
98
|
+
.highlight .mi {
|
99
|
+
color: #009999;
|
100
|
+
}
|
101
|
+
.highlight .mo {
|
102
|
+
color: #009999;
|
103
|
+
}
|
104
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
105
|
+
color: #009999;
|
106
|
+
}
|
107
|
+
.highlight .sb {
|
108
|
+
color: #d14;
|
109
|
+
}
|
110
|
+
.highlight .sc {
|
111
|
+
color: #d14;
|
112
|
+
}
|
113
|
+
.highlight .sd {
|
114
|
+
color: #d14;
|
115
|
+
}
|
116
|
+
.highlight .s2 {
|
117
|
+
color: #d14;
|
118
|
+
}
|
119
|
+
.highlight .se {
|
120
|
+
color: #d14;
|
121
|
+
}
|
122
|
+
.highlight .sh {
|
123
|
+
color: #d14;
|
124
|
+
}
|
125
|
+
.highlight .si {
|
126
|
+
color: #d14;
|
127
|
+
}
|
128
|
+
.highlight .sx {
|
129
|
+
color: #d14;
|
130
|
+
}
|
131
|
+
.highlight .sr {
|
132
|
+
color: #009926;
|
133
|
+
}
|
134
|
+
.highlight .s1 {
|
135
|
+
color: #d14;
|
136
|
+
}
|
137
|
+
.highlight .ss {
|
138
|
+
color: #990073;
|
139
|
+
}
|
140
|
+
.highlight .s {
|
141
|
+
color: #d14;
|
142
|
+
}
|
143
|
+
.highlight .na {
|
144
|
+
color: #008080;
|
145
|
+
}
|
146
|
+
.highlight .bp {
|
147
|
+
color: #999999;
|
148
|
+
}
|
149
|
+
.highlight .nb {
|
150
|
+
color: #0086B3;
|
151
|
+
}
|
152
|
+
.highlight .nc {
|
153
|
+
color: #445588;
|
154
|
+
font-weight: bold;
|
155
|
+
}
|
156
|
+
.highlight .no {
|
157
|
+
color: #008080;
|
158
|
+
}
|
159
|
+
.highlight .nd {
|
160
|
+
color: #3c5d5d;
|
161
|
+
font-weight: bold;
|
162
|
+
}
|
163
|
+
.highlight .ni {
|
164
|
+
color: #800080;
|
165
|
+
}
|
166
|
+
.highlight .ne {
|
167
|
+
color: #990000;
|
168
|
+
font-weight: bold;
|
169
|
+
}
|
170
|
+
.highlight .nf {
|
171
|
+
color: #990000;
|
172
|
+
font-weight: bold;
|
173
|
+
}
|
174
|
+
.highlight .nl {
|
175
|
+
color: #990000;
|
176
|
+
font-weight: bold;
|
177
|
+
}
|
178
|
+
.highlight .nn {
|
179
|
+
color: #555555;
|
180
|
+
}
|
181
|
+
.highlight .nt {
|
182
|
+
color: #000080;
|
183
|
+
}
|
184
|
+
.highlight .vc {
|
185
|
+
color: #008080;
|
186
|
+
}
|
187
|
+
.highlight .vg {
|
188
|
+
color: #008080;
|
189
|
+
}
|
190
|
+
.highlight .vi {
|
191
|
+
color: #008080;
|
192
|
+
}
|
193
|
+
.highlight .nv {
|
194
|
+
color: #008080;
|
195
|
+
}
|
196
|
+
.highlight .ow {
|
197
|
+
color: #000000;
|
198
|
+
font-weight: bold;
|
199
|
+
}
|
200
|
+
.highlight .o {
|
201
|
+
color: #000000;
|
202
|
+
font-weight: bold;
|
203
|
+
}
|
204
|
+
.highlight .w {
|
205
|
+
color: #bbbbbb;
|
206
|
+
}
|
207
|
+
.highlight {
|
208
|
+
background-color: #f8f8f8;
|
209
|
+
}
|