Compare commits

...

5 Commits

Author SHA1 Message Date
Damillora 77c6d76d46 feat: new caption design 2021-07-11 03:19:24 +07:00
Damillora a1d30b3b13 chore: update depends 2021-07-11 01:01:07 +07:00
Damillora 62ab8aa6ba fix(shian): make search toggles not conflict with menu toggles 2021-07-11 00:52:36 +07:00
Damillora 78c1bd6421 feat(shian): add permanent icon menus 2021-07-11 00:26:56 +07:00
Damillora 6def68f493 perf(shian): switch back to usual nav menu
BREAKING CHANGE: please update your stylesheets accordingly
2021-07-11 00:24:55 +07:00
6 changed files with 570 additions and 433 deletions

View File

@ -34,6 +34,8 @@
z-index: 1; z-index: 1;
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex;
flex-direction: column;
@include transition; @include transition;
} }
@ -48,12 +50,16 @@
.header { .header {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%;
@include transition; @include transition;
@include screen(md) {
height: 4rem;
flex-direction: row;
}
&__top { &__top {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-grow: 1;
height: 3rem; height: 3rem;
@include screen(md) { @include screen(md) {
height: 4rem; height: 4rem;
@ -89,8 +95,10 @@
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
@include transition; @include transition;
@include screen(md) {
display: none;
}
&:hover { &:hover {
background-color: $theme-blue; background-color: $theme-blue;
} }

View File

@ -1,11 +1,57 @@
.menu { .menu {
max-height: 0px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@include transition; @include transition;
overflow: hidden;
&.enabled { @include screen(md) {
max-height: 100vh; 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 { &__item {
color: $white; color: $white;
@ -16,6 +62,10 @@
cursor: pointer; cursor: pointer;
@include transition; @include transition;
@include screen(md) {
height: 4rem;
}
&:hover { &:hover {
background-color: $theme-blue; background-color: $theme-blue;
} }
@ -42,6 +92,10 @@
text-align: center; text-align: center;
@include px(0.5rem); @include px(0.5rem);
@include py(0.75rem); @include py(0.75rem);
@include screen(md) {
display: none;
}
} }
&__text { &__text {
display: inline-block; display: inline-block;
@ -94,4 +148,4 @@
text-decoration: underline; text-decoration: underline;
} }
} }
} }

View File

@ -36,6 +36,7 @@
&__contents { &__contents {
z-index: 1; z-index: 1;
width: 100%;
padding-top: 3rem; padding-top: 3rem;
@include screen(md) { @include screen(md) {
padding-top: 4rem; padding-top: 4rem;

View File

@ -1,4 +1,6 @@
.post-header { .post-header {
width: 100%;
&__heading { &__heading {
@include my(0.5rem); @include my(0.5rem);
@ -8,7 +10,7 @@
align-items: center; align-items: center;
} }
&--tag-text { &--tag-text {
margin-left: 0.5rem; margin-right: 0.5rem;
color: $white; color: $white;
} }
&--tag-color { &--tag-color {
@ -44,7 +46,6 @@
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
@include my(0.5rem); @include my(0.5rem);
@include py(0.5rem);
} }
&__author-images { &__author-images {
display: flex; display: flex;
@ -69,4 +70,26 @@
&__social { &__social {
color: $white; 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;
}
}
&__caption-text {
background: var(--bg-color);
color: var(--highlight-color);
padding: 0.25rem 1rem;
border-radius: 1rem;
font-size: $text-sm;
box-shadow: 0px 0px 4px 1px var(--accent-color);
@include screen(md) {
padding: 0.5rem 2rem;
}
}
} }

View File

@ -13,6 +13,8 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
object-fit: contain; object-fit: contain;
position: relative;
.kg-image { .kg-image {
width: 100%; width: 100%;
} }
@ -35,9 +37,23 @@
} }
.kg-card figcaption { .kg-card figcaption {
font-size: $text-sm; font-size: $text-sm;
background: var(--bg-color);
color: var(--highlight-color); color: var(--highlight-color);
margin-top: 0.5rem; padding: 0.25rem 1rem;
border-radius: 1rem;
margin-left: 0.5rem;
margin-right: 0.5rem;
text-align: center; text-align: center;
@include screen(md) {
padding: 0.5rem 2rem;
}
}
.kg-image-card figcaption {
position: absolute;
bottom: 2rem;
box-shadow: 0px 0px 4px 1px var(--accent-color);
} }
.kg-gallery-container { .kg-gallery-container {
@ -131,3 +147,16 @@
white-space: nowrap; white-space: nowrap;
} }
} }
.site-header {
&.search-enabled {
height: 100%;
}
&.search-enabled &__inner {
background: rgba(0, 0, 0, 0.5);
}
&.search-detached &__inner {
background: rgba(0, 0, 0, 0.5);
}
}

868
yarn.lock

File diff suppressed because it is too large Load Diff