jekyll-theme-hydejack 6.6.1 → 7.0.0.pre.beta.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.md +617 -17
- data/README.md +18 -11
- data/_includes/about.html +3 -2
- data/_includes/author.html +18 -11
- data/_includes/avatar-tag.html +4 -0
- data/_includes/body.html +21 -31
- data/_includes/body/menu.html +11 -0
- data/_includes/body/scripts.html +18 -0
- data/_includes/comments.html +6 -4
- data/_includes/footer.html +3 -5
- data/_includes/head.html +4 -142
- data/_includes/head/links.html +25 -0
- data/_includes/head/meta.html +30 -0
- data/_includes/head/scripts.html +44 -0
- data/_includes/head/seo-fallback.html +13 -0
- data/_includes/head/seo-tag.html +4 -0
- data/_includes/head/styles.html +24 -0
- data/_includes/header.txt +1 -1
- data/_includes/link.html +9 -2
- data/_includes/message.html +12 -7
- data/_includes/my-scripts.html +14 -5
- data/_includes/nav.html +20 -13
- data/_includes/page-style.html +33 -3
- data/_includes/pagination.html +8 -12
- data/_includes/post-list-item.html +4 -6
- data/_includes/post.html +20 -13
- data/_includes/related-posts.html +23 -0
- data/_includes/scripts/load-disqus.js +1 -2
- data/_includes/scripts/load-disqus.min.js +1 -1
- data/_includes/scripts/load-js-deferred.js +47 -43
- data/_includes/scripts/load-js-deferred.min.js +1 -1
- data/_includes/sidebar.html +25 -14
- data/_includes/social-list-item.html +1 -1
- data/_includes/social.html +16 -10
- data/_includes/srcset-img.html +5 -5
- data/_includes/styles/inline.scss +31 -33
- data/_includes/styles/style.scss +69 -55
- data/_includes/tag-list.html +1 -1
- data/_includes/templates.html +32 -0
- data/_layouts/about.html +10 -3
- data/_layouts/base.html +17 -10
- data/_layouts/compress.html +3 -11
- data/_layouts/default.html +7 -5
- data/_layouts/home.html +7 -5
- data/_layouts/list.html +10 -4
- data/_layouts/not-found.html +14 -5
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +12 -2
- data/_layouts/redirect.html +1 -1
- data/_sass/_mixins.scss +9 -3
- data/_sass/_reboot-mod.scss +286 -0
- data/_sass/_spinner.scss +23 -80
- data/_sass/_syntax.scss +1 -1
- data/_sass/_variables.scss +9 -11
- data/_sass/hydejack/__inline/_avatar.scss +27 -0
- data/_sass/hydejack/__inline/_base.scss +99 -0
- data/_sass/hydejack/__inline/_break-layout.scss +12 -0
- data/_sass/hydejack/__inline/_content.scss +43 -0
- data/_sass/hydejack/__inline/_footer.scss +12 -0
- data/_sass/hydejack/__inline/_katex.scss +12 -0
- data/_sass/hydejack/__inline/_mark-external.scss +36 -0
- data/_sass/hydejack/__inline/_menu.scss +50 -0
- data/_sass/hydejack/__inline/_sidebar.scss +129 -0
- data/_sass/hydejack/__inline/_social.scss +42 -0
- data/_sass/hydejack/__link/_avatar.scss +17 -0
- data/_sass/hydejack/__link/_base.scss +93 -0
- data/_sass/hydejack/__link/_break-layout.scss +69 -0
- data/_sass/hydejack/__link/_content.scss +12 -0
- data/_sass/hydejack/__link/_footer.scss +26 -0
- data/_sass/hydejack/__link/_katex.scss +45 -0
- data/_sass/hydejack/__link/_mark-external.scss +36 -0
- data/_sass/hydejack/__link/_menu.scss +37 -0
- data/_sass/hydejack/__link/_sidebar.scss +156 -0
- data/_sass/hydejack/__link/_social.scss +12 -0
- data/_sass/hydejack/_avatar.pre.scss +18 -0
- data/_sass/hydejack/_base.pre.scss +133 -0
- data/_sass/hydejack/_break-layout.pre.scss +58 -0
- data/_sass/hydejack/{_content-inline.scss → _content.pre.scss} +5 -5
- data/_sass/hydejack/{_footer-inline.scss → _footer.pre.scss} +2 -5
- data/_sass/hydejack/{_katex.scss → _katex.pre.scss} +6 -3
- data/_sass/hydejack/_mark-external.pre.scss +25 -0
- data/_sass/hydejack/_menu.pre.scss +53 -0
- data/_sass/hydejack/_sidebar.pre.scss +188 -0
- data/_sass/hydejack/{_social-inline.scss → _social.pre.scss} +6 -11
- data/_sass/pooleparty/{_base-inline.scss → __inline/_base.scss} +15 -17
- data/_sass/pooleparty/__inline/_code.scss +17 -0
- data/_sass/pooleparty/__inline/_footer.scss +12 -0
- data/_sass/pooleparty/__inline/_footnotes.scss +16 -0
- data/_sass/pooleparty/__inline/_message.scss +26 -0
- data/_sass/pooleparty/__inline/_pagination.scss +17 -0
- data/_sass/pooleparty/__inline/_posts.scss +41 -0
- data/_sass/pooleparty/__inline/_related.scss +25 -0
- data/_sass/pooleparty/__inline/_table.scss +39 -0
- data/_sass/pooleparty/__inline/_type.scss +83 -0
- data/_sass/pooleparty/__link/_base.scss +26 -0
- data/_sass/pooleparty/__link/_code.scss +54 -0
- data/_sass/pooleparty/__link/_footer.scss +12 -0
- data/_sass/pooleparty/__link/_footnotes.scss +57 -0
- data/_sass/pooleparty/__link/_message.scss +17 -0
- data/_sass/pooleparty/__link/_pagination.scss +78 -0
- data/_sass/pooleparty/__link/_posts.scss +30 -0
- data/_sass/pooleparty/__link/_related.scss +14 -0
- data/_sass/pooleparty/{_table.scss → __link/_table.scss} +71 -46
- data/_sass/pooleparty/__link/_type.scss +144 -0
- data/_sass/pooleparty/_base.pre.scss +54 -0
- data/_sass/pooleparty/_code.pre.scss +43 -0
- data/_sass/pooleparty/_footer.pre.scss +1 -0
- data/_sass/pooleparty/{_footnotes.scss → _footnotes.pre.scss} +17 -4
- data/_sass/pooleparty/{_message-inline.scss → _message.pre.scss} +2 -0
- data/_sass/pooleparty/{_pagination.scss → _pagination.pre.scss} +7 -6
- data/_sass/pooleparty/{_posts-inline.scss → _posts.pre.scss} +16 -15
- data/_sass/pooleparty/{_related-inline.scss → _related.pre.scss} +5 -6
- data/_sass/pooleparty/_table.pre.scss +161 -0
- data/_sass/pooleparty/_type.pre.scss +198 -0
- data/assets/icomoon/fonts/icomoon.eot +0 -0
- data/assets/icomoon/fonts/icomoon.svg +9 -3
- data/assets/icomoon/fonts/icomoon.ttf +0 -0
- data/assets/icomoon/fonts/icomoon.woff +0 -0
- data/assets/icomoon/selection.json +250 -76
- data/assets/icomoon/style.css +26 -8
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/icon.png +0 -0
- data/assets/icons/icon@0,25x.png +0 -0
- data/assets/icons/icon@0,5x.png +0 -0
- data/assets/icons/icon@0,75x.png +0 -0
- data/assets/icons/icon@2x.png +0 -0
- data/assets/icons/icon@3x.png +0 -0
- data/assets/icons/tile-large.png +0 -0
- data/assets/icons/tile-medium.png +0 -0
- data/assets/icons/tile-small.png +0 -0
- data/assets/icons/tile-wide.png +0 -0
- data/assets/ieconfig.xml +15 -0
- data/assets/img/sidebar-bg.jpg +0 -0
- data/assets/js/hydejack.js +2 -2
- data/assets/manifest.json +45 -0
- data/assets/version.json +1 -1
- data/licenses/Apache-2.0.md +55 -47
- data/licenses/GPL-3.0.md +623 -0
- data/licenses/MIT.md +1 -0
- data/licenses/PRO.md +142 -0
- metadata +103 -99
- data/_includes/related.html +0 -41
- data/_includes/scripts.html +0 -17
- data/_sass/hydejack/_base-inline.scss +0 -143
- data/_sass/hydejack/_base.scss +0 -143
- data/_sass/hydejack/_drawer-inline.scss +0 -19
- data/_sass/hydejack/_drawer.scss +0 -19
- data/_sass/hydejack/_me-inline.scss +0 -24
- data/_sass/hydejack/_menu-inline.scss +0 -56
- data/_sass/hydejack/_menu.scss +0 -56
- data/_sass/hydejack/_sidebar-inline.scss +0 -118
- data/_sass/hydejack/_sidebar.scss +0 -115
- data/_sass/hydejack/_social.scss +0 -36
- data/_sass/hydejack/_toc.scss +0 -2
- data/_sass/pooleparty/_base.scss +0 -60
- data/_sass/pooleparty/_code.scss +0 -82
- data/_sass/pooleparty/_footer-inline.scss +0 -3
- data/_sass/pooleparty/_posts.scss +0 -41
- data/_sass/pooleparty/_table-inline.scss +0 -130
- data/_sass/pooleparty/_type-inline.scss +0 -124
- data/_sass/pooleparty/_type.scss +0 -124
- data/assets/icomoon/Read Me.txt +0 -7
- data/assets/icomoon/demo-files/demo.css +0 -152
- data/assets/icomoon/demo-files/demo.js +0 -30
- data/assets/icomoon/demo.html +0 -1206
- data/assets/img/nap.jpg +0 -0
- data/assets/img/projects/hyde-v1.jpg +0 -0
- data/assets/img/projects/hyde-v1@0,25x.jpg +0 -0
- data/assets/img/projects/hyde-v1@0,5x.jpg +0 -0
- data/assets/img/projects/hyde-v2.jpg +0 -0
- data/assets/img/projects/hyde-v2@0,25x.jpg +0 -0
- data/assets/img/projects/hyde-v2@0,5x.jpg +0 -0
- data/licenses/PRO-license.md +0 -147
@@ -1,3 +1,4 @@
|
|
1
|
+
// <<<<< INLINE
|
1
2
|
.sidebar-social {
|
2
3
|
margin-bottom: .5rem;
|
3
4
|
|
@@ -8,24 +9,17 @@
|
|
8
9
|
> ul {
|
9
10
|
list-style: none;
|
10
11
|
padding-left: 0;
|
11
|
-
margin: 0 -.25rem;
|
12
12
|
|
13
13
|
> li {
|
14
14
|
float: left;
|
15
|
-
margin: 0 .25rem;
|
16
15
|
|
17
16
|
> a {
|
18
17
|
display: inline-block;
|
19
18
|
text-align: center;
|
20
|
-
font-size: 1.
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
padding: .5rem 0;
|
25
|
-
|
26
|
-
// &::after {
|
27
|
-
// display: none;
|
28
|
-
// }
|
19
|
+
font-size: 1.5rem;
|
20
|
+
width: 3rem;
|
21
|
+
height: 3.5rem;
|
22
|
+
padding: 0;
|
29
23
|
}
|
30
24
|
}
|
31
25
|
|
@@ -34,3 +28,4 @@
|
|
34
28
|
}
|
35
29
|
}
|
36
30
|
}
|
31
|
+
// >>>>>
|
@@ -1,18 +1,20 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_base.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
7
11
|
|
8
12
|
* {
|
9
|
-
|
10
|
-
|
11
|
-
box-sizing: border-box;
|
12
|
-
|
13
|
-
// -webkit-tap-highlight-color: transparent;
|
13
|
+
box-sizing: border-box;
|
14
|
+
// // -webkit-tap-highlight-color: transparent;
|
14
15
|
}
|
15
16
|
|
17
|
+
|
16
18
|
html,
|
17
19
|
body {
|
18
20
|
margin: 0;
|
@@ -52,9 +54,5 @@ img, .img {
|
|
52
54
|
}
|
53
55
|
}
|
54
56
|
|
55
|
-
|
56
|
-
|
57
|
-
// content: " (" attr(href) ") ";
|
58
|
-
// font-size: smaller;
|
59
|
-
// }
|
60
|
-
// }
|
57
|
+
|
58
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_code.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Code
|
13
|
+
//
|
14
|
+
// Inline and block-level code snippets. Includes tweaks to syntax highlighted
|
15
|
+
// snippets from Pygments/Rouge and Gist embeds.
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_footer.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// footer { margin-bottom: 2rem; }
|
@@ -0,0 +1,16 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_footnotes.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Markdown footnotes
|
13
|
+
//
|
14
|
+
// See the example content post for an example.
|
15
|
+
|
16
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_message.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Messages
|
13
|
+
//
|
14
|
+
// Show alert messages to users. You may add it to single elements like a `<p>`,
|
15
|
+
// or to a parent if there are multiple elements to show.
|
16
|
+
|
17
|
+
|
18
|
+
.message {
|
19
|
+
margin-bottom: 1rem;
|
20
|
+
padding: 1rem;
|
21
|
+
color: $gray-text;
|
22
|
+
background-color: $gray-bg;
|
23
|
+
margin-left: -1rem;
|
24
|
+
margin-right: -1rem;
|
25
|
+
}
|
26
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_pagination.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Pagination
|
13
|
+
//
|
14
|
+
// Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
|
15
|
+
// there are no more previous or next posts to show.
|
16
|
+
|
17
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_posts.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Posts and pages
|
13
|
+
//
|
14
|
+
// Each post is wrapped in `.post` and is used on default and post layouts. Each
|
15
|
+
// page is wrapped in `.page` and is only used on the page layout.
|
16
|
+
|
17
|
+
|
18
|
+
.page {
|
19
|
+
margin-bottom: 3em;
|
20
|
+
|
21
|
+
li + li {
|
22
|
+
margin-top: .25rem;
|
23
|
+
}
|
24
|
+
|
25
|
+
> header {
|
26
|
+
margin-bottom: 2rem;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
// Blog post or page title
|
31
|
+
.page-title, .post-title { margin-top: 0; }
|
32
|
+
|
33
|
+
// Meta data line below post title
|
34
|
+
.post-date {
|
35
|
+
display: block;
|
36
|
+
margin-top: -0.5rem;
|
37
|
+
margin-bottom: 1rem;
|
38
|
+
color: $gray;
|
39
|
+
}
|
40
|
+
|
41
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_related.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Related posts
|
13
|
+
|
14
|
+
|
15
|
+
.related-posts {
|
16
|
+
padding-left: 0;
|
17
|
+
list-style: none;
|
18
|
+
margin-bottom: 2rem;
|
19
|
+
|
20
|
+
> li,
|
21
|
+
> li + li {
|
22
|
+
margin-top: 1rem;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_table.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
table:not(.highlight) {
|
13
|
+
|
14
|
+
border-collapse: collapse;
|
15
|
+
margin-bottom: 2rem;
|
16
|
+
margin-left: -1rem;
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
td, th {
|
23
|
+
padding: .25rem .5rem;
|
24
|
+
border: 1px solid $border-color;
|
25
|
+
|
26
|
+
&:first-child {
|
27
|
+
padding-left: 1rem;
|
28
|
+
}
|
29
|
+
|
30
|
+
&:last-child {
|
31
|
+
padding-right: 1rem;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
}
|
38
|
+
|
39
|
+
|
@@ -0,0 +1,83 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_type.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Typography
|
13
|
+
//
|
14
|
+
// Headings, body text, lists, and other misc typographic elements.
|
15
|
+
|
16
|
+
|
17
|
+
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
18
|
+
font-weight: bold;
|
19
|
+
margin: 4rem 0 1rem;
|
20
|
+
}
|
21
|
+
|
22
|
+
.heading {
|
23
|
+
font-weight: bold;
|
24
|
+
}
|
25
|
+
|
26
|
+
h1, .h1 {
|
27
|
+
font-size: 2rem;
|
28
|
+
line-height: 1.3;
|
29
|
+
}
|
30
|
+
|
31
|
+
h2, .h2 {
|
32
|
+
font-size: 1.5rem;
|
33
|
+
line-height: 1.4;
|
34
|
+
}
|
35
|
+
|
36
|
+
h3, .h3 {
|
37
|
+
font-size: 1.17em;
|
38
|
+
line-height: 1.5;
|
39
|
+
}
|
40
|
+
|
41
|
+
p {
|
42
|
+
margin-top: 0;
|
43
|
+
margin-bottom: 1rem;
|
44
|
+
|
45
|
+
&.lead {
|
46
|
+
padding: 0 1rem;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
ul, ol, dl {
|
51
|
+
margin-top: 0;
|
52
|
+
margin-bottom: 1rem;
|
53
|
+
}
|
54
|
+
|
55
|
+
ul, ol {
|
56
|
+
padding-left: 1.25rem;
|
57
|
+
}
|
58
|
+
|
59
|
+
hr {
|
60
|
+
position: relative;
|
61
|
+
margin: 1.5rem 0;
|
62
|
+
border: 0;
|
63
|
+
border-top: 1px solid $border-color;
|
64
|
+
}
|
65
|
+
|
66
|
+
.hr {
|
67
|
+
border-bottom: 1px solid $border-color;
|
68
|
+
padding-bottom: .5rem;
|
69
|
+
margin-bottom: 1.5rem;
|
70
|
+
|
71
|
+
&.page-title {
|
72
|
+
padding-bottom: 1rem;
|
73
|
+
margin-bottom: 2rem;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
h4, h5, h6, .h4, .h5, .h6 {
|
78
|
+
margin-bottom: 0.5rem;
|
79
|
+
font-size: 1rem;
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_base.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
* {
|
13
|
+
// box-sizing: border-box;
|
14
|
+
// -webkit-tap-highlight-color: transparent;
|
15
|
+
}
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
@media print {
|
21
|
+
a::after {
|
22
|
+
content: " (" attr(href) ") ";
|
23
|
+
font-size: 0.83em;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/*
|
2
|
+
* THIS FILE IS AUTOGENERATED, DO NOT MODIFY!
|
3
|
+
*
|
4
|
+
* To change the contents of this file,
|
5
|
+
* edit `_sass/pooleparty/_code.pre.scss`
|
6
|
+
* and run `npm run build:css`.
|
7
|
+
*
|
8
|
+
* During development you can run `npm run watch:css`
|
9
|
+
* to continuosly rebuild this file.
|
10
|
+
*/
|
11
|
+
|
12
|
+
// Code
|
13
|
+
//
|
14
|
+
// Inline and block-level code snippets. Includes tweaks to syntax highlighted
|
15
|
+
// snippets from Pygments/Rouge and Gist embeds.
|
16
|
+
|
17
|
+
|
18
|
+
code, pre {
|
19
|
+
font-family: $code-font-family;
|
20
|
+
}
|
21
|
+
|
22
|
+
code {
|
23
|
+
padding: .25em .5em;
|
24
|
+
background-color: $code-bg;
|
25
|
+
font-size: .85em;
|
26
|
+
}
|
27
|
+
|
28
|
+
pre {
|
29
|
+
margin-top: 0;
|
30
|
+
display: block;
|
31
|
+
line-height: 1.4;
|
32
|
+
font-size: .85em;
|
33
|
+
|
34
|
+
/* Prevent code linebreaks and allow side-scrolling (much better readability on mobile) */
|
35
|
+
overflow-x: auto;
|
36
|
+
-webkit-overflow-scrolling: touch;
|
37
|
+
|
38
|
+
/* Make code same width as regular text, and scroll the full page width on mobile */
|
39
|
+
@include pre();
|
40
|
+
|
41
|
+
backface-visibility: hidden;
|
42
|
+
}
|
43
|
+
|
44
|
+
pre > code {
|
45
|
+
padding: 0;
|
46
|
+
color: inherit;
|
47
|
+
background-color: transparent;
|
48
|
+
font-size: 1em;
|
49
|
+
}
|
50
|
+
|
51
|
+
pre, .highlight {
|
52
|
+
margin-bottom: 2rem;
|
53
|
+
}
|
54
|
+
|