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
data/_includes/related.html
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
{% assign post = include.post %}
|
2
|
-
|
3
|
-
<aside class="related" role="complementary">
|
4
|
-
<h2 class="hr">Related Posts</h2>
|
5
|
-
|
6
|
-
<ul class="related-posts">
|
7
|
-
{% if site.use_lsi %}
|
8
|
-
{% for post in site.related_posts limit:3 %}
|
9
|
-
{% include post-list-item.html post=post %}
|
10
|
-
{% endfor %}
|
11
|
-
{% elsif post.categories.first %}
|
12
|
-
{% assign category_posts = site.categories[post.categories.first] %}
|
13
|
-
{% assign plusone = false %}
|
14
|
-
{% for post in category_posts limit:4 %}
|
15
|
-
{% if post.url == page.url %}
|
16
|
-
{% assign plusone = true %}
|
17
|
-
{% continue %}
|
18
|
-
{% endif %}
|
19
|
-
{% if forloop.index < 4 or plusone == true %}
|
20
|
-
{% include post-list-item.html post=post %}
|
21
|
-
{% endif %}
|
22
|
-
{% endfor %}
|
23
|
-
{% elsif post.tags.first %}
|
24
|
-
{% assign tag_posts = site.tags[post.tags.first] %}
|
25
|
-
{% assign plusone = false %}
|
26
|
-
{% for post in tag_posts limit:4 %}
|
27
|
-
{% if post.url == page.url %}
|
28
|
-
{% assign plusone = true %}
|
29
|
-
{% continue %}
|
30
|
-
{% endif %}
|
31
|
-
{% if forloop.index < 4 or plusone == true %}
|
32
|
-
{% include post-list-item.html post=post %}
|
33
|
-
{% endif %}
|
34
|
-
{% endfor %}
|
35
|
-
{% else %}
|
36
|
-
{% for post in site.related_posts limit:3 %}
|
37
|
-
{% include post-list-item.html post=post %}
|
38
|
-
{% endfor %}
|
39
|
-
{% endif %}
|
40
|
-
</ul>
|
41
|
-
</aside>
|
data/_includes/scripts.html
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
{% if site.google_analytics %}
|
2
|
-
<script>
|
3
|
-
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
4
|
-
ga('create', '{{ site.google_analytics }}', 'auto');
|
5
|
-
ga('send', 'pageview');
|
6
|
-
loadJSDeferred('https://www.google-analytics.com/analytics.js');
|
7
|
-
</script>
|
8
|
-
{% endif %}
|
9
|
-
|
10
|
-
{% unless page.redirect %}
|
11
|
-
<!--[if gt IE 9]><!---->
|
12
|
-
{% capture js_url %}{% link assets/js/hydejack.js %}?v=6.6.1{% endcapture %}
|
13
|
-
<script>loadJSDeferred('{{ js_url | relative_url }}');</script>
|
14
|
-
|
15
|
-
{% include my-scripts.html %}
|
16
|
-
<!--<![endif]-->
|
17
|
-
{% endunless %}
|
@@ -1,143 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Global resets
|
3
|
-
*
|
4
|
-
* Update the foundational and global aspects of the page.
|
5
|
-
*/
|
6
|
-
|
7
|
-
body, main {
|
8
|
-
/* Prevent side-scrolling on mobile */
|
9
|
-
position: relative;
|
10
|
-
overflow-x: hidden;
|
11
|
-
|
12
|
-
// -webkit-text-size-adjust: 100%;
|
13
|
-
// -ms-text-size-adjust: 100%;
|
14
|
-
}
|
15
|
-
|
16
|
-
@media screen {
|
17
|
-
body::before {
|
18
|
-
content: '';
|
19
|
-
width: .5rem;
|
20
|
-
background: $border-color;
|
21
|
-
position: absolute;
|
22
|
-
left: 0;
|
23
|
-
top: 0;
|
24
|
-
bottom: 0;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
@media screen and (min-width: $break-point-1) {
|
29
|
-
html {
|
30
|
-
font-size: $root-font-size-medium;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
@media screen and (min-width: $break-point-2) {
|
35
|
-
html {
|
36
|
-
font-size: $root-font-size;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
|
40
|
-
@media screen and (min-width: $break-point-4) {
|
41
|
-
html {
|
42
|
-
font-size: $root-font-size-medium;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
@media screen and (min-width: $break-point-font-large) {
|
47
|
-
html {
|
48
|
-
font-size: $root-font-size-large;
|
49
|
-
}
|
50
|
-
}
|
51
|
-
|
52
|
-
// @media print {
|
53
|
-
// html {
|
54
|
-
// font-size: $root-font-size;
|
55
|
-
// }
|
56
|
-
// }
|
57
|
-
|
58
|
-
.sr-only {
|
59
|
-
// will be properly styled in the main css
|
60
|
-
display: none;
|
61
|
-
// display: unset;
|
62
|
-
// position: absolute;
|
63
|
-
// width: 1px;
|
64
|
-
// height: 1px;
|
65
|
-
// padding: 0;
|
66
|
-
// margin: -1px;
|
67
|
-
// overflow: hidden;
|
68
|
-
// clip: rect(0,0,0,0);
|
69
|
-
// border: 0;
|
70
|
-
}
|
71
|
-
|
72
|
-
.clearfix, .clearafter::after {
|
73
|
-
@include clearfix();
|
74
|
-
}
|
75
|
-
|
76
|
-
a, .a {
|
77
|
-
position: relative;
|
78
|
-
padding-bottom: .15rem;
|
79
|
-
border-bottom: 1px solid;
|
80
|
-
// transition: color 500ms, border-color 250ms ease;
|
81
|
-
//
|
82
|
-
// &:hover, &:focus {
|
83
|
-
// text-decoration: none;
|
84
|
-
// border-bottom-width: 4px;
|
85
|
-
// transition: color 500ms, border-color 50ms ease-out;
|
86
|
-
// }
|
87
|
-
//
|
88
|
-
// &.no-hover {
|
89
|
-
// border-bottom: none;
|
90
|
-
// padding-bottom: none;
|
91
|
-
// transition: none;
|
92
|
-
//
|
93
|
-
// &:hover, &:focus {
|
94
|
-
// transition: none;
|
95
|
-
// }
|
96
|
-
// }
|
97
|
-
}
|
98
|
-
|
99
|
-
.img {
|
100
|
-
overflow: hidden;
|
101
|
-
background-color: $gray-bg;
|
102
|
-
// background-position: center;
|
103
|
-
// background-repeat: no-repeat;
|
104
|
-
// background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB3aWR0aD0iMTYwIiBoZWlnaHQ9IjkwIiB2aWV3Qm94PSIwIDAgMTYwIDkwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxnIHRyYW5zZm9ybT0ibWF0cml4KDAuMDQ4ODI4LCAwLCAwLCAwLjA0Nzk5MSwgNTQuOTk5OTczLCAyMC40MjgxNDgpIj4KICAgIDxwYXRoIGQ9Ik05NTkuODg0IDEyOGMwLjA0MCAwLjAzNCAwLjA4MiAwLjA3NiAwLjExNiAwLjExNnY3NjcuNzdjLTAuMDM0IDAuMDQwLTAuMDc2IDAuMDgyLTAuMTE2IDAuMTE2aC04OTUuNzdjLTAuMDQwLTAuMDM0LTAuMDgyLTAuMDc2LTAuMTE0LTAuMTE2di03NjcuNzcyYzAuMDM0LTAuMDQwIDAuMDc2LTAuMDgyIDAuMTE0LTAuMTE0aDg5NS43N3pNOTYwIDY0aC04OTZjLTM1LjIgMC02NCAyOC44LTY0IDY0djc2OGMwIDM1LjIgMjguOCA2NCA2NCA2NGg4OTZjMzUuMiAwIDY0LTI4LjggNjQtNjR2LTc2OGMwLTM1LjItMjguOC02NC02NC02NHYweiIgc3R5bGU9ImZpbGw6IHJnYigyMjEsIDIyMSwgMjIxKTsiLz4KICAgIDxwYXRoIGQ9Ik04MzIgMjg4YzAgNTMuMDIwLTQyLjk4IDk2LTk2IDk2cy05Ni00Mi45OC05Ni05NiA0Mi45OC05NiA5Ni05NiA5NiA0Mi45OCA5NiA5NnoiIHN0eWxlPSJmaWxsOiByZ2IoMjIxLCAyMjEsIDIyMSk7Ii8+CiAgICA8cGF0aCBkPSJNODk2IDgzMmgtNzY4di0xMjhsMjI0LTM4NCAyNTYgMzIwaDY0bDIyNC0xOTJ6IiBzdHlsZT0iZmlsbDogcmdiKDIyMSwgMjIxLCAyMjEpOyIvPgogIDwvZz4KPC9zdmc+');
|
105
|
-
|
106
|
-
> img {
|
107
|
-
margin: 0;
|
108
|
-
width: 100%;
|
109
|
-
height: 100%;
|
110
|
-
// object-fit: cover;
|
111
|
-
// object-position: center;
|
112
|
-
}
|
113
|
-
}
|
114
|
-
|
115
|
-
.sixteen-nine {
|
116
|
-
@include aspect-ratio(16, 9);
|
117
|
-
}
|
118
|
-
|
119
|
-
h1, h2, h3, h4, h5, h6 {
|
120
|
-
& + hr {
|
121
|
-
margin-top: 0;
|
122
|
-
}
|
123
|
-
}
|
124
|
-
|
125
|
-
// .author {
|
126
|
-
// margin-bottom: 3rem;
|
127
|
-
// }
|
128
|
-
|
129
|
-
.fade-in {
|
130
|
-
animation-duration: 500ms;
|
131
|
-
animation-name: fade-in;
|
132
|
-
animation-fill-mode: forwards;
|
133
|
-
}
|
134
|
-
|
135
|
-
@keyframes fade-in {
|
136
|
-
from { transform: translateY(-2rem); opacity: 0; }
|
137
|
-
50% { transform: translateY(-2rem); opacity: 0; }
|
138
|
-
to { transform: translateY(0); opacity: 1; }
|
139
|
-
}
|
140
|
-
|
141
|
-
.mb6 {
|
142
|
-
margin-bottom: 6rem;
|
143
|
-
}
|
data/_sass/hydejack/_base.scss
DELETED
@@ -1,143 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Global resets
|
3
|
-
*
|
4
|
-
* Update the foundational and global aspects of the page.
|
5
|
-
*/
|
6
|
-
|
7
|
-
body, main {
|
8
|
-
/* Prevent side-scrolling on mobile */
|
9
|
-
// position: relative;
|
10
|
-
// overflow-x: hidden;
|
11
|
-
|
12
|
-
-webkit-text-size-adjust: 100%;
|
13
|
-
-ms-text-size-adjust: 100%;
|
14
|
-
}
|
15
|
-
|
16
|
-
// @media screen {
|
17
|
-
// body::before {
|
18
|
-
// content: '';
|
19
|
-
// width: .5rem;
|
20
|
-
// background: $border-color;
|
21
|
-
// position: absolute;
|
22
|
-
// left: 0;
|
23
|
-
// top: 0;
|
24
|
-
// bottom: 0;
|
25
|
-
// }
|
26
|
-
// }
|
27
|
-
|
28
|
-
@media screen and (min-width: $break-point-1) {
|
29
|
-
// html {
|
30
|
-
// font-size: $root-font-size-large;
|
31
|
-
// }
|
32
|
-
}
|
33
|
-
|
34
|
-
@media screen and (min-width: $break-point-2) {
|
35
|
-
// html {
|
36
|
-
// font-size: $root-font-size;
|
37
|
-
// }
|
38
|
-
}
|
39
|
-
|
40
|
-
@media screen and (min-width: $break-point-4) {
|
41
|
-
// html {
|
42
|
-
// font-size: $root-font-size-medium;
|
43
|
-
// }
|
44
|
-
}
|
45
|
-
|
46
|
-
@media screen and (min-width: $break-point-font-large) {
|
47
|
-
// html {
|
48
|
-
// font-size: $root-font-size-large;
|
49
|
-
// }
|
50
|
-
}
|
51
|
-
|
52
|
-
@media print {
|
53
|
-
html {
|
54
|
-
font-size: $root-font-size;
|
55
|
-
}
|
56
|
-
}
|
57
|
-
|
58
|
-
.sr-only {
|
59
|
-
// will be properly styled in the main css
|
60
|
-
// display: none;
|
61
|
-
display: unset;
|
62
|
-
position: absolute;
|
63
|
-
width: 1px;
|
64
|
-
height: 1px;
|
65
|
-
padding: 0;
|
66
|
-
margin: -1px;
|
67
|
-
overflow: hidden;
|
68
|
-
clip: rect(0,0,0,0);
|
69
|
-
border: 0;
|
70
|
-
}
|
71
|
-
|
72
|
-
// .clearfix, .clearafter::after {
|
73
|
-
// @include clearfix();
|
74
|
-
// }
|
75
|
-
|
76
|
-
a, .a {
|
77
|
-
// position: relative;
|
78
|
-
// padding-bottom: .15rem;
|
79
|
-
// border-bottom: 1px dotted transparent;
|
80
|
-
transition: color 500ms, border-color 250ms;
|
81
|
-
|
82
|
-
&:hover, &:focus {
|
83
|
-
text-decoration: none;
|
84
|
-
// border-bottom-width: 4px;
|
85
|
-
transition: color 500ms, border-color 50ms;
|
86
|
-
}
|
87
|
-
|
88
|
-
&.no-hover {
|
89
|
-
border-bottom: none;
|
90
|
-
padding-bottom: none;
|
91
|
-
transition: none;
|
92
|
-
|
93
|
-
&:hover, &:focus {
|
94
|
-
transition: none;
|
95
|
-
}
|
96
|
-
}
|
97
|
-
}
|
98
|
-
|
99
|
-
.img {
|
100
|
-
// overflow: hidden;
|
101
|
-
// background-color: $gray-bg;
|
102
|
-
background-position: center;
|
103
|
-
background-repeat: no-repeat;
|
104
|
-
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB3aWR0aD0iMTYwIiBoZWlnaHQ9IjkwIiB2aWV3Qm94PSIwIDAgMTYwIDkwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxnIHRyYW5zZm9ybT0ibWF0cml4KDAuMDQ4ODI4LCAwLCAwLCAwLjA0Nzk5MSwgNTQuOTk5OTczLCAyMC40MjgxNDgpIj4KICAgIDxwYXRoIGQ9Ik05NTkuODg0IDEyOGMwLjA0MCAwLjAzNCAwLjA4MiAwLjA3NiAwLjExNiAwLjExNnY3NjcuNzdjLTAuMDM0IDAuMDQwLTAuMDc2IDAuMDgyLTAuMTE2IDAuMTE2aC04OTUuNzdjLTAuMDQwLTAuMDM0LTAuMDgyLTAuMDc2LTAuMTE0LTAuMTE2di03NjcuNzcyYzAuMDM0LTAuMDQwIDAuMDc2LTAuMDgyIDAuMTE0LTAuMTE0aDg5NS43N3pNOTYwIDY0aC04OTZjLTM1LjIgMC02NCAyOC44LTY0IDY0djc2OGMwIDM1LjIgMjguOCA2NCA2NCA2NGg4OTZjMzUuMiAwIDY0LTI4LjggNjQtNjR2LTc2OGMwLTM1LjItMjguOC02NC02NC02NHYweiIgc3R5bGU9ImZpbGw6IHJnYigyMjEsIDIyMSwgMjIxKTsiLz4KICAgIDxwYXRoIGQ9Ik04MzIgMjg4YzAgNTMuMDIwLTQyLjk4IDk2LTk2IDk2cy05Ni00Mi45OC05Ni05NiA0Mi45OC05NiA5Ni05NiA5NiA0Mi45OCA5NiA5NnoiIHN0eWxlPSJmaWxsOiByZ2IoMjIxLCAyMjEsIDIyMSk7Ii8+CiAgICA8cGF0aCBkPSJNODk2IDgzMmgtNzY4di0xMjhsMjI0LTM4NCAyNTYgMzIwaDY0bDIyNC0xOTJ6IiBzdHlsZT0iZmlsbDogcmdiKDIyMSwgMjIxLCAyMjEpOyIvPgogIDwvZz4KPC9zdmc+');
|
105
|
-
|
106
|
-
> img {
|
107
|
-
// margin: 0;
|
108
|
-
// width: 100%;
|
109
|
-
// height: 100%;
|
110
|
-
object-fit: cover;
|
111
|
-
object-position: center;
|
112
|
-
}
|
113
|
-
}
|
114
|
-
|
115
|
-
// .sixteen-nine {
|
116
|
-
// @include aspect-ratio(16, 9);
|
117
|
-
// }
|
118
|
-
|
119
|
-
// h1, h2, h3, h4, h5, h6 {
|
120
|
-
// & + hr {
|
121
|
-
// margin-top: 0;
|
122
|
-
// }
|
123
|
-
// }
|
124
|
-
|
125
|
-
.author {
|
126
|
-
margin-top: 3rem;
|
127
|
-
}
|
128
|
-
|
129
|
-
// .fade-in {
|
130
|
-
// animation-duration: 500ms;
|
131
|
-
// animation-name: fade-in;
|
132
|
-
// animation-fill-mode: forwards;
|
133
|
-
// }
|
134
|
-
//
|
135
|
-
// @keyframes fade-in {
|
136
|
-
// from { transform: translateY(-2rem); opacity: 0; }
|
137
|
-
// 50% { transform: translateY(-2rem); opacity: 0; }
|
138
|
-
// to { transform: translateY(0); opacity: 1; }
|
139
|
-
// }
|
140
|
-
//
|
141
|
-
// .mb6 {
|
142
|
-
// margin-bottom: 6rem;
|
143
|
-
// }
|
@@ -1,19 +0,0 @@
|
|
1
|
-
@media screen {
|
2
|
-
.y-drawer-scrim {
|
3
|
-
z-index: 2;
|
4
|
-
}
|
5
|
-
|
6
|
-
.y-drawer-content {
|
7
|
-
width: 18rem;
|
8
|
-
left: -17.5rem;
|
9
|
-
z-index: 3;
|
10
|
-
|
11
|
-
@media (min-width: $break-point-dynamic) {
|
12
|
-
width: $dynamic-width;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
// header, body::before {
|
17
|
-
// backface-visibility: hidden;
|
18
|
-
// }
|
19
|
-
}
|
data/_sass/hydejack/_drawer.scss
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
@media screen {
|
2
|
-
// .y-drawer-scrim {
|
3
|
-
// z-index: 2;
|
4
|
-
// }
|
5
|
-
//
|
6
|
-
// .y-drawer-content {
|
7
|
-
// width: 18rem;
|
8
|
-
// left: -17.5rem;
|
9
|
-
// z-index: 3;
|
10
|
-
//
|
11
|
-
// @media (min-width: $break-point-dynamic) {
|
12
|
-
// width: $dynamic-width;
|
13
|
-
// }
|
14
|
-
// }
|
15
|
-
|
16
|
-
header, body::before {
|
17
|
-
backface-visibility: hidden;
|
18
|
-
}
|
19
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
.me {
|
2
|
-
float: right;
|
3
|
-
width: 6.5rem;
|
4
|
-
height: 6.5rem;
|
5
|
-
margin-left: 1rem;
|
6
|
-
margin-bottom: .5rem;
|
7
|
-
border-radius: 100%;
|
8
|
-
position: relative;
|
9
|
-
|
10
|
-
@media screen and (min-width: $break-point-1) {
|
11
|
-
width: 7rem;
|
12
|
-
height: 7rem;
|
13
|
-
}
|
14
|
-
|
15
|
-
@media screen and (min-width: $break-point-2) {
|
16
|
-
width: 6.5rem;
|
17
|
-
height: 6.5rem;
|
18
|
-
}
|
19
|
-
|
20
|
-
@media screen and (min-width: $break-point-3) {
|
21
|
-
width: 7rem;
|
22
|
-
height: 7rem;
|
23
|
-
}
|
24
|
-
}
|
@@ -1,56 +0,0 @@
|
|
1
|
-
.fixed-top {
|
2
|
-
position: fixed;
|
3
|
-
top: 0;
|
4
|
-
left: 0;
|
5
|
-
width: 100%;
|
6
|
-
z-index: 1;
|
7
|
-
}
|
8
|
-
|
9
|
-
.navbar > .content {
|
10
|
-
padding-top: 0;
|
11
|
-
padding-bottom: 0;
|
12
|
-
min-height: 0;
|
13
|
-
height: 0;
|
14
|
-
}
|
15
|
-
|
16
|
-
.menu {
|
17
|
-
display: inline-block;
|
18
|
-
padding: 1.75rem 1.5rem;
|
19
|
-
border-bottom: none;
|
20
|
-
margin-left: -1.5rem;
|
21
|
-
color: $gray!important;
|
22
|
-
|
23
|
-
&::after {
|
24
|
-
content: "\2630"; // ☰
|
25
|
-
}
|
26
|
-
|
27
|
-
@media screen and (min-width: $break-point-2) {
|
28
|
-
padding: 1.25rem 1.5rem;
|
29
|
-
position: absolute;
|
30
|
-
left: -9999px;
|
31
|
-
|
32
|
-
&:focus {
|
33
|
-
position: static;
|
34
|
-
}
|
35
|
-
}
|
36
|
-
|
37
|
-
// @media print {
|
38
|
-
// display: none;
|
39
|
-
// }
|
40
|
-
}
|
41
|
-
|
42
|
-
.animation-main {
|
43
|
-
// opacity: 0;
|
44
|
-
// will-change: opacity;
|
45
|
-
pointer-events: none;
|
46
|
-
}
|
47
|
-
|
48
|
-
.loading {
|
49
|
-
display: none;
|
50
|
-
// position: absolute;
|
51
|
-
// top: 0;
|
52
|
-
// right: 0;
|
53
|
-
// padding: 3 * 1.75rem 3 * 1.5rem;
|
54
|
-
// transform-origin: top right;
|
55
|
-
// transform: scale(0.33);
|
56
|
-
}
|