mirror of
https://github.com/Damillora/Shian.git
synced 2024-10-31 17:47:31 +00:00
Compare commits
No commits in common. "main" and "v2.0.0" have entirely different histories.
@ -1,6 +1,6 @@
|
||||
const {series, watch, src, dest, parallel} = require('gulp');
|
||||
|
||||
const sass = require('gulp-sass')(require('sass'));
|
||||
const sass = require('gulp-sass');
|
||||
const livereload = require('gulp-livereload');
|
||||
const zip = require('gulp-zip');
|
||||
const concat = require('gulp-concat');
|
||||
|
9925
package-lock.json
generated
9925
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@ -11,9 +11,7 @@
|
||||
"dev": "gulp dev",
|
||||
"semantic-release": "semantic-release"
|
||||
},
|
||||
"dependencies": {
|
||||
"sass": "^1.35.1"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@fullhuman/postcss-purgecss": "^1.3.0",
|
||||
"autoprefixer": "^10.2.1",
|
||||
@ -22,12 +20,12 @@
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-livereload": "^4.0.2",
|
||||
"gulp-postcss": "^9.0.0",
|
||||
"gulp-sass": "5",
|
||||
"gulp-sass": "^4.1.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"gulp-zip": "^5.0.1",
|
||||
"postcss": "^8.2.3",
|
||||
"semantic-release": "^17.4.2",
|
||||
"typeface-exo-2": "^0.0.72"
|
||||
"typeface-exo-2": "^0.0.72",
|
||||
"semantic-release": "^17.4.2"
|
||||
},
|
||||
"files": [
|
||||
"dist/**"
|
||||
@ -37,8 +35,6 @@
|
||||
"url": "https://github.com/Damillora/Shian.git"
|
||||
},
|
||||
"release": {
|
||||
"branches": [
|
||||
"main"
|
||||
]
|
||||
"branches": ["main"]
|
||||
}
|
||||
}
|
||||
|
@ -20,5 +20,3 @@
|
||||
@import './components/copyarea';
|
||||
@import './components/floatingyuriko';
|
||||
@import './components/tag';
|
||||
@import './components/forms';
|
||||
@import './components/button';
|
@ -38,9 +38,7 @@ body {
|
||||
}
|
||||
|
||||
.main {
|
||||
margin: 1rem;
|
||||
@include px(1rem);
|
||||
|
||||
padding: 1rem;
|
||||
@include screen(sm) {
|
||||
@include px(2rem);
|
||||
}
|
||||
|
@ -1,12 +0,0 @@
|
||||
.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);
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
.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;
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
overflow: hidden;
|
||||
@include transition;
|
||||
&.enabled {
|
||||
height: 100%;
|
||||
height: 100vh;
|
||||
}
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
@ -21,10 +21,10 @@
|
||||
|
||||
opacity: 0%;
|
||||
top: -23vh;
|
||||
}
|
||||
&.enabled &__background {
|
||||
opacity: 100%;
|
||||
top: 0;
|
||||
&--enabled {
|
||||
opacity: 100%;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
&__overlay {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
@ -34,8 +34,6 @@
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@include transition;
|
||||
}
|
||||
|
||||
@ -52,14 +50,9 @@
|
||||
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;
|
||||
@ -95,10 +88,8 @@
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
|
||||
@include transition;
|
||||
@include screen(md) {
|
||||
display: none;
|
||||
}
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
}
|
||||
|
@ -1,57 +1,10 @@
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-height: 0px;
|
||||
display: block;
|
||||
@include transition;
|
||||
|
||||
@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%;
|
||||
}
|
||||
}
|
||||
overflow: hidden;
|
||||
&.enabled {
|
||||
max-height: 100vh;
|
||||
}
|
||||
&__item {
|
||||
color: $white;
|
||||
@ -62,19 +15,9 @@
|
||||
cursor: pointer;
|
||||
@include transition;
|
||||
|
||||
@include screen(md) {
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: $theme-blue;
|
||||
}
|
||||
|
||||
&--hidden {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
@include transition;
|
||||
}
|
||||
}
|
||||
|
||||
&__link {
|
||||
@ -92,10 +35,6 @@
|
||||
text-align: center;
|
||||
@include px(0.5rem);
|
||||
@include py(0.75rem);
|
||||
|
||||
@include screen(md) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
&__text {
|
||||
display: inline-block;
|
||||
@ -103,49 +42,9 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -10,14 +10,6 @@
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
|
||||
&--short {
|
||||
min-height: 3rem;
|
||||
|
||||
@include screen(md) {
|
||||
min-height: 4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&__heading {
|
||||
color: $white;
|
||||
@include my(0.5rem);
|
||||
@ -44,7 +36,6 @@
|
||||
|
||||
&__contents {
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
padding-top: 3rem;
|
||||
@include screen(md) {
|
||||
padding-top: 4rem;
|
||||
|
@ -42,24 +42,26 @@
|
||||
@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;
|
||||
color: var(--text-color);
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
&__paywall {
|
||||
display: inline-block;
|
||||
padding-right: 0.25rem;
|
||||
font-size: $text-sm;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
@ -112,9 +114,6 @@
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
&__author-name {
|
||||
color: var(--text-color);
|
||||
}
|
||||
&__excerpt {
|
||||
margin-top: 0.5rem;
|
||||
margin-bottom: 1rem;
|
||||
|
@ -1,24 +1,20 @@
|
||||
.post-header {
|
||||
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;
|
||||
margin-left: 0.5rem;
|
||||
color: $white;
|
||||
}
|
||||
&--tag-color {
|
||||
display: inline-block;
|
||||
border-radius: 9999px;
|
||||
vertical-align: text-bottom;
|
||||
margin-right: 0.5rem;
|
||||
height: 4rem;
|
||||
width: 4rem;
|
||||
}
|
||||
@ -39,6 +35,7 @@
|
||||
@include my(0.5rem);
|
||||
}
|
||||
&__title {
|
||||
color: $white;
|
||||
@include my(0.5rem);
|
||||
}
|
||||
&__author-list {
|
||||
@ -46,7 +43,8 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
@include my(1rem);
|
||||
@include my(0.5rem);
|
||||
@include py(0.5rem);
|
||||
}
|
||||
&__author-images {
|
||||
display: flex;
|
||||
@ -65,59 +63,7 @@
|
||||
flex-grow: 1;
|
||||
justify-content: center;
|
||||
}
|
||||
&__social {
|
||||
&__author-name {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
&__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(1rem);
|
||||
@include my(2rem);
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
row-gap: 1rem;
|
||||
|
@ -12,7 +12,7 @@
|
||||
text-decoration: underline;
|
||||
}
|
||||
&--post-header {
|
||||
color: var(--text-color);
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
&__paywall {
|
||||
|
@ -13,34 +13,9 @@
|
||||
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;
|
||||
@ -58,6 +33,13 @@
|
||||
.kg-width-full .kg-image {
|
||||
min-width: 100vw;
|
||||
}
|
||||
.kg-card figcaption {
|
||||
font-size: $text-sm;
|
||||
color: var(--highlight-color);
|
||||
margin-top: 0.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.kg-gallery-container {
|
||||
min-width: 100vw;
|
||||
@include screen(md) {
|
||||
@ -149,21 +131,3 @@
|
||||
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