mirror of
https://github.com/Damillora/Shian.git
synced 2024-11-01 01:47:32 +00:00
Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
08284c78ce | |||
12329cb4a8 | |||
478d47217b | |||
77c6d76d46 | |||
a1d30b3b13 | |||
62ab8aa6ba | |||
78c1bd6421 | |||
6def68f493 | |||
4f53496885 | |||
fa7253e18b | |||
cc4febf595 | |||
f873e60897 | |||
2a23ca143f | |||
c4540bfe26 | |||
912be0730e | |||
424f7234bf | |||
3359eb9575 | |||
b2a4a3868a | |||
eef1519f53 | |||
c556c3667d | |||
80b7edc301 | |||
7735874650 | |||
f38a1d0f43 | |||
4242d4b015 |
@ -1,6 +1,6 @@
|
||||
const {series, watch, src, dest, parallel} = require('gulp');
|
||||
|
||||
const sass = require('gulp-sass');
|
||||
const sass = require('gulp-sass')(require('sass'));
|
||||
const livereload = require('gulp-livereload');
|
||||
const zip = require('gulp-zip');
|
||||
const concat = require('gulp-concat');
|
||||
|
9925
package-lock.json
generated
Normal file
9925
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
15
package.json
15
package.json
@ -8,9 +8,12 @@
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp build",
|
||||
"dev": "gulp dev",
|
||||
"semantic-release": "semantic-release"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": {
|
||||
"sass": "^1.35.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@fullhuman/postcss-purgecss": "^1.3.0",
|
||||
"autoprefixer": "^10.2.1",
|
||||
@ -19,12 +22,12 @@
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-livereload": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-sass": "5",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-zip": "^5.0.1",
|
||||
"postcss": "^8.2.3",
|
||||
"typeface-exo-2": "^0.0.72",
|
||||
"semantic-release": "^17.4.2"
|
||||
"semantic-release": "^17.4.2",
|
||||
"typeface-exo-2": "^0.0.72"
|
||||
},
|
||||
"files": [
|
||||
"dist/**"
|
||||
@ -34,6 +37,8 @@
|
||||
"url": "https://github.com/Damillora/Shian.git"
|
||||
},
|
||||
"release": {
|
||||
"branches": ["main"]
|
||||
"branches": [
|
||||
"main"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -19,3 +19,6 @@
|
||||
@import './components/gameitem';
|
||||
@import './components/copyarea';
|
||||
@import './components/floatingyuriko';
|
||||
@import './components/tag';
|
||||
@import './components/forms';
|
||||
@import './components/button';
|
@ -1,6 +1,6 @@
|
||||
html {
|
||||
font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
|
||||
}
|
||||
:root,
|
||||
[data-theme='light'] {
|
||||
@ -38,7 +38,9 @@ body {
|
||||
}
|
||||
|
||||
.main {
|
||||
padding: 1rem;
|
||||
margin: 1rem;
|
||||
@include px(1rem);
|
||||
|
||||
@include screen(sm) {
|
||||
@include px(2rem);
|
||||
}
|
||||
@ -58,7 +60,7 @@ body {
|
||||
.main {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
||||
}
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
@ -75,6 +77,7 @@ body {
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: 300;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
h1 {
|
||||
font-size: $text-4xl;
|
||||
@ -126,7 +129,6 @@ body {
|
||||
padding: 0.5rem;
|
||||
border: 1px solid var(--accent-color);
|
||||
}
|
||||
}
|
||||
|
||||
.card-list {
|
||||
display: flex;
|
||||
|
12
src/sass/components/_button.scss
Normal file
12
src/sass/components/_button.scss
Normal file
@ -0,0 +1,12 @@
|
||||
.button {
|
||||
border: solid 2px var(--accent-color);
|
||||
background: var(--accent-color);
|
||||
color: var(--accent-bg-color);
|
||||
padding: 0.25rem 1rem;
|
||||
font-size: 1.125rem;
|
||||
@include transition;
|
||||
}
|
||||
.button:hover {
|
||||
background: var(--highlight-bg-color);
|
||||
color: var(--highlight-color);
|
||||
}
|
@ -4,7 +4,7 @@
|
||||
bottom: 1rem;
|
||||
margin-bottom: 0px;
|
||||
cursor: pointer;
|
||||
img {
|
||||
&__image {
|
||||
height: 20vh;
|
||||
}
|
||||
}
|
||||
@ -22,7 +22,9 @@
|
||||
-webkit-transition-timing-function: ease-out;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
|
||||
.hvr-float:hover,
|
||||
.hvr-float:focus,
|
||||
.hvr-float:active {
|
||||
-webkit-transform: translateY(-8px);
|
||||
transform: translateY(-8px);
|
||||
}
|
12
src/sass/components/_forms.scss
Normal file
12
src/sass/components/_forms.scss
Normal file
@ -0,0 +1,12 @@
|
||||
.input {
|
||||
border: solid 1px var(--accent-color);
|
||||
padding: 0.5rem;
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
border-radius: 0.25rem;
|
||||
resize: none;
|
||||
}
|
||||
.input:focus-within {
|
||||
outline: none;
|
||||
}
|
||||
|
@ -27,15 +27,15 @@
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
&.hidden {
|
||||
&--hidden {
|
||||
height: 0;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
img {
|
||||
max-height: 100%;
|
||||
}
|
||||
&__popup-image {
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
&__exit {
|
||||
|
@ -24,13 +24,13 @@
|
||||
@include my(0.5rem);
|
||||
display: block;
|
||||
|
||||
p {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
&__text {
|
||||
@include my(0.25rem);
|
||||
white-space: nowrap;
|
||||
text-align: right;
|
||||
}
|
||||
flex-shrink: 1;
|
||||
}
|
||||
&__icon {
|
||||
padding: 0.5rem;
|
||||
vertical-align: middle;
|
||||
|
@ -1,14 +1,15 @@
|
||||
|
||||
.site-header {
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
height: 4rem;
|
||||
width: 100vw;
|
||||
height: 3rem;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
@include transition;
|
||||
&.enabled {
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
height: 100%;
|
||||
}
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
&__background {
|
||||
@ -20,20 +21,21 @@
|
||||
|
||||
opacity: 0%;
|
||||
top: -23vh;
|
||||
&--enabled {
|
||||
}
|
||||
&.enabled &__background {
|
||||
opacity: 100%;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
&__overlay {
|
||||
opacity: 50%;
|
||||
background-color: $black;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
&__inner {
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@include transition;
|
||||
}
|
||||
|
||||
@ -49,47 +51,75 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
flex-direction: row;
|
||||
}
|
||||
&__top {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-grow: 1;
|
||||
height: 3rem;
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
flex-grow: 1;
|
||||
@include transition;
|
||||
a {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
@include py(0.5rem);
|
||||
@include screen(md) {
|
||||
@include py(1rem);
|
||||
}
|
||||
color: $white;
|
||||
font-size: $text-lg;
|
||||
padding-left: 1rem;
|
||||
height: 100%;
|
||||
}
|
||||
flex-grow: 1;
|
||||
@include transition;
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
&__nav-button {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
padding: 0.5rem;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
@include transition;
|
||||
@include screen(md) {
|
||||
display: none;
|
||||
}
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
}
|
||||
}
|
||||
&__nav-button-text {
|
||||
color: $white;
|
||||
margin-right: 0.5rem;
|
||||
display: none;
|
||||
@include screen(md) {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
&__icon {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
color: $white;
|
||||
@include px(0.50rem);
|
||||
@include py(0.75rem);
|
||||
display: inline-block;
|
||||
@include px(0.5rem);
|
||||
vertical-align: middle;
|
||||
// @include py(0.25rem);
|
||||
// @include screen(md) {
|
||||
// @include py(0.75rem);
|
||||
// }
|
||||
}
|
||||
}
|
@ -16,9 +16,8 @@
|
||||
width: 100%;
|
||||
@include my(0.5rem);
|
||||
display: block;
|
||||
|
||||
p {
|
||||
}
|
||||
&__text {
|
||||
@include my(0.25rem);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +1,57 @@
|
||||
.menu {
|
||||
max-height: 0px;
|
||||
display: block;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@include transition;
|
||||
overflow: hidden;
|
||||
|
||||
&.enabled {
|
||||
max-height: 100vh;
|
||||
@include screen(md) {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
// Dark mode special menu
|
||||
&--dark-mode {
|
||||
.menu__text {
|
||||
display: block;
|
||||
@include screen(md) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.menu__icon {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
&--permanent-icon {
|
||||
.menu__icon {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
&__nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
@include screen(md) {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
&__nav-main {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
overflow-y: hidden;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
&.hidden {
|
||||
height: 0;
|
||||
|
||||
@include screen(md) {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
&__item {
|
||||
color: $white;
|
||||
@ -16,35 +62,90 @@
|
||||
cursor: pointer;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
}
|
||||
|
||||
a {
|
||||
&--hidden {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
@include transition;
|
||||
}
|
||||
}
|
||||
|
||||
&__link {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
i {
|
||||
&__icon {
|
||||
display: inline-block;
|
||||
width: 4rem;
|
||||
height: 3rem;
|
||||
color: $white;
|
||||
text-align: center;
|
||||
@include px(0.50rem);
|
||||
@include px(0.5rem);
|
||||
@include py(0.75rem);
|
||||
|
||||
@include screen(md) {
|
||||
display: none;
|
||||
}
|
||||
p {
|
||||
}
|
||||
&__text {
|
||||
display: inline-block;
|
||||
flex-grow: 1;
|
||||
color: $white;
|
||||
@include px(1rem);
|
||||
}
|
||||
}
|
||||
|
||||
&__separator {
|
||||
margin-left: 5rem;
|
||||
margin-right: 4rem;
|
||||
border-top: 0.125rem solid $white;
|
||||
}
|
||||
|
||||
&__search-input {
|
||||
display: inline-block;
|
||||
flex-grow: 1;
|
||||
color: $white;
|
||||
@include px(0.5rem);
|
||||
@include mx(0.5rem);
|
||||
@include py(0.25rem);
|
||||
appearance: none;
|
||||
background-color: transparent;
|
||||
outline: none;
|
||||
border-bottom: 1px solid $white;
|
||||
&:focus-visible {
|
||||
outline: none;
|
||||
border-bottom: 1px solid $white;
|
||||
}
|
||||
}
|
||||
&__search-results {
|
||||
flex-grow: 1;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
&__search-result {
|
||||
color: $white;
|
||||
display: block;
|
||||
align-items: center;
|
||||
@include px(2rem);
|
||||
@include py(1rem);
|
||||
@include transition;
|
||||
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
}
|
||||
}
|
||||
&__search-title {
|
||||
color: $white;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,38 +1,63 @@
|
||||
.page-header {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-height: 200px;
|
||||
height: 70vh;
|
||||
color: $white;
|
||||
min-height: 50vh;
|
||||
font-weight: 300;
|
||||
min-height: 300px;
|
||||
height: 70vh;
|
||||
overflow: hidden;
|
||||
@include screen(md) {
|
||||
min-height: 70vh;
|
||||
}
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
|
||||
&--short {
|
||||
min-height: 3rem;
|
||||
|
||||
@include screen(md) {
|
||||
min-height: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__heading {
|
||||
color: $white;
|
||||
@include my(0.5rem);
|
||||
}
|
||||
&__text {
|
||||
@include my(0.5rem);
|
||||
}
|
||||
&__background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: -10;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
&__overlay {
|
||||
z-index: -10;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: $black;
|
||||
opacity: 50%;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
&__contents {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
@include py(0.5rem);
|
||||
a {
|
||||
color: $white;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
padding-top: 3rem;
|
||||
@include screen(md) {
|
||||
padding-top: 4rem;
|
||||
}
|
||||
color: $white;
|
||||
}
|
||||
|
||||
&__icon {
|
||||
width: 6rem;
|
||||
height: 6rem;
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
@include screen(md) {
|
||||
width: 4rem;
|
||||
height: 4rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -18,14 +18,14 @@
|
||||
min-width: 300px;
|
||||
max-width: 450px;
|
||||
}
|
||||
img {
|
||||
}
|
||||
&__image-inner {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
&__image::after {
|
||||
display: block;
|
||||
content: '';
|
||||
@ -42,26 +42,24 @@
|
||||
@include screen(md) {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
* {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
}
|
||||
}
|
||||
&__tag-color {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
&__tag-name {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
font-size: $text-sm;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
color: var(--text-color);
|
||||
}
|
||||
&__paywall {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
font-size: $text-sm;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
@ -74,6 +72,7 @@
|
||||
color: var(--accent-color);
|
||||
font-size: $text-xl;
|
||||
font-weight: 300;
|
||||
@include my(0rem);
|
||||
|
||||
@include screen(md) {
|
||||
font-size: $text-2xl;
|
||||
@ -84,10 +83,12 @@
|
||||
}
|
||||
|
||||
&__time {
|
||||
@include my(0rem);
|
||||
font-size: $text-xs;
|
||||
}
|
||||
|
||||
&__author-list {
|
||||
@include my(0rem);
|
||||
font-size: $text-xs;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@ -98,26 +99,21 @@
|
||||
&__author-images {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
&__author-image {
|
||||
height: 2rem;
|
||||
margin-left: 0.25rem;
|
||||
margin-right: 0.75rem;
|
||||
|
||||
img {
|
||||
border-radius: 9999px;
|
||||
height: 100%;
|
||||
}
|
||||
&__author-image {
|
||||
border-radius: 9999px;
|
||||
height: 2rem;
|
||||
}
|
||||
&__author-names {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
&__author-name {
|
||||
color: var(--text-color);
|
||||
}
|
||||
&__excerpt {
|
||||
margin-top: 0.5rem;
|
||||
|
@ -1,95 +1,123 @@
|
||||
.post-header {
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p {
|
||||
width: 100%;
|
||||
margin-top: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
|
||||
&__heading {
|
||||
@include my(0.5rem);
|
||||
|
||||
&--tag {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
&--tag-text {
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
&--tag-color {
|
||||
display: inline-block;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
margin-right: 0.5rem;
|
||||
height: 4rem;
|
||||
width: 4rem;
|
||||
}
|
||||
}
|
||||
&__tag-row {
|
||||
padding-top: 1rem;
|
||||
@include screen(md) {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
* {
|
||||
}
|
||||
&__tag-info {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__tag-heading {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
h1 {
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
}
|
||||
&__tag-heading-color {
|
||||
display: inline-block;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
height: 4rem;
|
||||
width: 4rem;
|
||||
}
|
||||
|
||||
&__tag-color {
|
||||
display: inline-block;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
&__tag-name {
|
||||
font-size: $text-base;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
&__paywall {
|
||||
font-size: $text-base;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
&__time {
|
||||
font-size: $text-sm;
|
||||
@include my(0.5rem);
|
||||
}
|
||||
&__title {
|
||||
@include my(0.5rem);
|
||||
}
|
||||
|
||||
&__author-list {
|
||||
font-size: $text-sm;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
@include my(0.5rem);
|
||||
@include py(0.5rem);
|
||||
@include my(1rem);
|
||||
}
|
||||
&__author-images {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
&__author-image {
|
||||
height: 2rem;
|
||||
align-items: center;
|
||||
margin-left: 0.25rem;
|
||||
margin-right: 0.75rem;
|
||||
|
||||
img {
|
||||
border-radius: 9999px;
|
||||
height: 100%;
|
||||
}
|
||||
&__author-image {
|
||||
border-radius: 9999px;
|
||||
height: 2rem;
|
||||
}
|
||||
&__author-names {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
&__social {
|
||||
color: $white;
|
||||
}
|
||||
&__caption {
|
||||
text-align: center;
|
||||
font-size: 0.75rem;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
@include screen(md) {
|
||||
text-align: center;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
&__featured-image {
|
||||
@include my(2rem);
|
||||
@include mx(0);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
object-fit: contain;
|
||||
position: relative;
|
||||
|
||||
img {
|
||||
min-width: 100vw;
|
||||
object-fit: cover;
|
||||
height: 50vh;
|
||||
@include screen(md) {
|
||||
height: 70vh;
|
||||
}
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: $text-sm;
|
||||
background: var(--bg-color);
|
||||
color: var(--highlight-color);
|
||||
padding: 0.25rem 1rem;
|
||||
border-radius: 1rem;
|
||||
margin-left: 0.5rem;
|
||||
margin-right: 0.5rem;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
box-shadow: 0px 0px 4px 1px var(--accent-color);
|
||||
z-index: 120;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
padding: 0.5rem 2rem;
|
||||
}
|
||||
}
|
||||
&:hover figcaption {
|
||||
transform: translateY(100%) translateY(2rem);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
.post-list {
|
||||
@include my(2rem);
|
||||
@include my(1rem);
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
row-gap: 1rem;
|
||||
|
@ -58,9 +58,6 @@
|
||||
&__nav-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&--previous-post {
|
||||
align-items: start;
|
||||
@ -77,7 +74,11 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
&__nav-indicator {
|
||||
margin: 0;
|
||||
}
|
||||
&__nav-title {
|
||||
margin: 0;
|
||||
font-size: $text-xl;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
25
src/sass/components/_tag.scss
Normal file
25
src/sass/components/_tag.scss
Normal file
@ -0,0 +1,25 @@
|
||||
.tag {
|
||||
&__color {
|
||||
display: inline-block;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
&__name {
|
||||
font-size: $text-base;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
&--post-header {
|
||||
color: var(--text-color);
|
||||
}
|
||||
}
|
||||
&__paywall {
|
||||
font-size: $text-base;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
color: var(--accent-color);
|
||||
}
|
||||
}
|
@ -1,4 +1,3 @@
|
||||
@import './utilities/normalize';
|
||||
@import './utilities/responsive';
|
||||
@import './utilities/transition';
|
||||
@import './utilities/spacing';
|
||||
@ -14,9 +13,34 @@
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
object-fit: contain;
|
||||
position: relative;
|
||||
|
||||
.kg-image {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: $text-sm;
|
||||
background: var(--bg-color);
|
||||
color: var(--highlight-color);
|
||||
padding: 0.25rem 1rem;
|
||||
border-radius: 1rem;
|
||||
margin-left: 0.5rem;
|
||||
margin-right: 0.5rem;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
bottom: 2rem;
|
||||
box-shadow: 0px 0px 4px 1px var(--accent-color);
|
||||
z-index: 120;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
padding: 0.5rem 2rem;
|
||||
}
|
||||
}
|
||||
&:hover figcaption {
|
||||
transform: translateY(100%) translateY(2rem);
|
||||
}
|
||||
}
|
||||
.kg-width-wide .kg-image {
|
||||
min-width: 100vw;
|
||||
@ -34,12 +58,6 @@
|
||||
.kg-width-full .kg-image {
|
||||
min-width: 100vw;
|
||||
}
|
||||
.kg-card figcaption {
|
||||
font-size: $text-sm;
|
||||
color: var(--highlight-color);
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.kg-gallery-container {
|
||||
min-width: 100vw;
|
||||
@include screen(md) {
|
||||
@ -131,3 +149,21 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.site-header {
|
||||
|
||||
&.search-enabled {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
&.search-enabled &__background {
|
||||
opacity: 100%;
|
||||
top: 0;
|
||||
}
|
||||
&.search-enabled &__inner {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
&.search-detached &__inner {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user