forked from poole/hyde
-
Notifications
You must be signed in to change notification settings - Fork 798
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
99 changed files
with
4,901 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ vendor | |
.jekyll-cache | ||
*.gem | ||
|
||
/assets/js/*hydejack-* | ||
/_sass/*/__*__/* | ||
#<removed/js> | ||
#<removed/css> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<!--[if gt IE 10]><!----> | ||
<script nomodule>{% include scripts/nomodule.min.js %}</script> | ||
<script src="{{ '/assets/js/hydejack-9.1.1.js' | relative_url }}" type="module"></script> | ||
<script src="{{ '/assets/js/LEGACY-hydejack-9.1.1.js' | relative_url }}" nomodule defer></script> | ||
<script src="{{ '/assets/js/hydejack-9.1.2.js' | relative_url }}" type="module"></script> | ||
<script src="{{ '/assets/js/LEGACY-hydejack-9.1.2.js' | relative_url }}" nomodule defer></script> | ||
{% include my-scripts.html %} | ||
{% include body/analytics.html %} | ||
<!--<![endif]--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_avatar.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
.avatar { | ||
|
||
width: 7rem; | ||
height: 7rem; | ||
border-radius: 100%; | ||
overflow: hidden; | ||
display: inline-block; | ||
img { width: 100%; } | ||
|
||
|
||
|
||
} | ||
|
||
|
||
.content .avatar { | ||
@extend .color-transition; | ||
float: right; | ||
box-sizing: content-box; | ||
border: 1rem solid var(--body-bg); | ||
transition: border-color 1s ease; | ||
margin-top: -1.5rem; | ||
margin-right: -1rem; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_base.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2021 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
|
||
body::before { | ||
@media screen { | ||
content: ''; | ||
width: .5rem; | ||
background: var(--gray-bg); | ||
position: fixed; | ||
left: 0; | ||
top: 0; | ||
bottom: 0; | ||
} | ||
|
||
@media (min-width: $break-point-3) { | ||
width: $sidebar-width; | ||
} | ||
|
||
@media (min-width: $break-point-dynamic) { | ||
width: calc(50% - #{$half-content}); | ||
} | ||
} | ||
|
||
html { | ||
@media screen and (min-width: $break-point-1) { | ||
font-size: var(--root-font-size-medium); | ||
} | ||
|
||
@media screen and (min-width: $break-point-font-large) { | ||
font-size: var(--root-font-size-large); | ||
} | ||
} | ||
|
||
#breadcrumbs { | ||
> ul { | ||
@extend .ellipsis; | ||
height: 1rem; | ||
margin: -1.5rem 0 .5rem; | ||
padding: 0; | ||
font-size: .667rem; | ||
color: var(--menu-text); | ||
text-transform: uppercase; | ||
width: 100%; | ||
list-style: none; | ||
> li { | ||
display: inline; | ||
a { | ||
color: var(--gray); | ||
text-decoration: none; | ||
border-bottom: none; | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_break-layout.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_content.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
.content { | ||
|
||
margin-left: auto; | ||
margin-right: auto; | ||
padding: 8rem $content-padding 12rem; | ||
|
||
@media screen { | ||
padding-left: $content-padding + .5rem; | ||
min-height: 100vh; | ||
} | ||
|
||
@media screen and (min-width: $break-point-1) { | ||
max-width: $content-width; | ||
} | ||
|
||
@media screen and (min-width: $break-point-2) { | ||
max-width: $content-width-2; | ||
} | ||
|
||
@media screen and (min-width: $break-point-3) { | ||
padding-left: $content-padding; | ||
margin-left: $sidebar-width + $content-margin-3; | ||
margin-right: $content-margin-3; | ||
} | ||
|
||
@media screen and (min-width: $break-point-5) { | ||
padding-top: 9rem; | ||
margin-left: $sidebar-width + $content-margin-5; | ||
margin-right: $content-margin-5; | ||
max-width: $content-width-5; | ||
} | ||
|
||
@media screen and (min-width: $break-point-dynamic) { | ||
margin: auto; | ||
} | ||
|
||
|
||
} | ||
|
||
.large-only { | ||
display: none; | ||
@media screen and (min-width: $break-point-dynamic) { | ||
display: block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_footer.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_images.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
.content .aspect-ratio { | ||
overflow: hidden; | ||
img { | ||
margin: 0; | ||
width: 100%; | ||
height: 100%; | ||
// object-fit: cover; | ||
// object-position: center; | ||
background-color: var(--gray-bg); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY! | ||
// | ||
// To change the contents of this file, | ||
// edit `_sass/hydejack/_katex.pre.scss` | ||
// and run `npm run build:css`. | ||
// | ||
// During development you can run `npm run watch:css` | ||
// to continuosly rebuild this file. | ||
|
||
// Copyright (c) 2017 Florian Klampfer <https://qwtel.com/> | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
Oops, something went wrong.