June 2026 Production theme
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
.animate__animated {
|
||||
animation-duration: 1s;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
@keyframes bounceIn {
|
||||
from,
|
||||
20%,
|
||||
40%,
|
||||
60%,
|
||||
80%,
|
||||
to {
|
||||
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||
}
|
||||
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.7, 0.7, 0.7);
|
||||
}
|
||||
|
||||
40% {
|
||||
transform: scale3d(1.1, 1.1, 1.1);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.animate__bounceIn {
|
||||
animation-name: bounceIn;
|
||||
animation-duration: 0.3s;
|
||||
}
|
||||
|
||||
@keyframes zoomOut {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
transform: scale3d(0.7, 0.7, 0.7);
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.animate__zoomOut {
|
||||
animation-name: zoomOut;
|
||||
animation-duration: 0.3s;
|
||||
}
|
||||
@@ -0,0 +1,159 @@
|
||||
.theme-dark:root {
|
||||
--primary-text-color: #e2e2e2;
|
||||
--secondary-text-color: #868686;
|
||||
--white-color: #282c35;
|
||||
--color-white: #282c35;
|
||||
--lighter-gray-color: #2f333c;
|
||||
--color-lighter-gray: #2f333c;
|
||||
--light-gray-color: #3b3e46;
|
||||
--color-light-gray: #3b3e46;
|
||||
--color-light-color: #3b3e46;
|
||||
--mid-gray-color: #666;
|
||||
--color-mid-gray: #666;
|
||||
--dark-gray-color: #e6e6e6;
|
||||
--color-dark-gray: #e6e6e6;
|
||||
--darker-gray-color: #fff;
|
||||
--color-darker-gray: #fff;
|
||||
}
|
||||
|
||||
.theme-dark .gh-head-logo img:first-child:not(:only-child) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.theme-dark .gh-head-logo img + img {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.theme-dark .sticky {
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
.theme-dark .form-button,
|
||||
.theme-dark .pswp__counter {
|
||||
color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link {
|
||||
background-color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-facebook {
|
||||
color: var(--facebook-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-x {
|
||||
color: var(--twitter-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-linkedin {
|
||||
color: var(--linkedin-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-bluesky {
|
||||
color: var(--bluesky-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-threads {
|
||||
color: var(--threads-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-mastodon {
|
||||
color: var(--mastodon-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-tiktok {
|
||||
color: var(--tiktok-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-youtube {
|
||||
color: var(--youtube-color);
|
||||
}
|
||||
|
||||
.theme-dark .share-link-instagram {
|
||||
color: var(--instagram-color);
|
||||
}
|
||||
|
||||
.theme-dark .kg-audio-card button {
|
||||
color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
.theme-dark .kg-bookmark-card a.kg-bookmark-container,
|
||||
.theme-dark .kg-bookmark-card a.kg-bookmark-container:hover,
|
||||
.theme-dark .kg-file-card-container,
|
||||
.theme-dark .kg-file-card-container:hover,
|
||||
.theme-dark .kg-audio-card,
|
||||
.theme-dark .kg-product-card-container {
|
||||
background-color: var(--lighter-gray-color) !important;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html:not(.theme-light):root {
|
||||
--primary-text-color: #e2e2e2;
|
||||
--secondary-text-color: #868686;
|
||||
--white-color: #282c35;
|
||||
--color-white: #282c35;
|
||||
--lighter-gray-color: #2f333c;
|
||||
--color-lighter-gray: #2f333c;
|
||||
--light-gray-color: #3b3e46;
|
||||
--color-light-gray: #3b3e46;
|
||||
--mid-gray-color: #666;
|
||||
--color-mid-gray: #666;
|
||||
--dark-gray-color: #e6e6e6;
|
||||
--color-dark-gray: #e6e6e6;
|
||||
--darker-gray-color: #fff;
|
||||
--color-darker-gray: #fff;
|
||||
}
|
||||
|
||||
html:not(.theme-light) .gh-head-logo img:first-child:not(:only-child) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
html:not(.theme-light) .gh-head-logo img + img {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
html:not(.theme-light) .sticky {
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .form-button,
|
||||
html:not(.theme-light) .pswp__counter {
|
||||
color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .share-link {
|
||||
background-color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .share-link-facebook {
|
||||
color: var(--facebook-color);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .share-link-x {
|
||||
color: var(--twitter-color);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .kg-audio-card button {
|
||||
color: var(--darker-gray-color);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .kg-bookmark-card a.kg-bookmark-container,
|
||||
html:not(.theme-light) .kg-bookmark-card a.kg-bookmark-container:hover,
|
||||
html:not(.theme-light) .kg-file-card-container,
|
||||
html:not(.theme-light) .kg-file-card-container:hover,
|
||||
html:not(.theme-light) .kg-audio-card,
|
||||
html:not(.theme-light) .kg-product-card-container {
|
||||
background-color: var(--lighter-gray-color) !important;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
html:not(.theme-light) .gh-button-share {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
border-color: rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
|
||||
html:not(.theme-light) .gh-button-share:hover {
|
||||
border-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,151 @@
|
||||
.owl {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: none;
|
||||
width: 100%;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
.owl .owl-stage {
|
||||
position: relative;
|
||||
touch-action: pan-y;
|
||||
}
|
||||
|
||||
.owl .owl-stage::after {
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
line-height: 0;
|
||||
visibility: hidden;
|
||||
content: ".";
|
||||
}
|
||||
|
||||
.owl .owl-stage-outer {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
.owl .owl-item {
|
||||
position: relative;
|
||||
float: left;
|
||||
min-height: 1px;
|
||||
transform: translateZ(0);
|
||||
backface-visibility: hidden;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
.owl .owl-item > img {
|
||||
display: block;
|
||||
transform-style: preserve-3d;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.owl .owl-nav.disabled,
|
||||
.owl .owl-dots.disabled {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.owl .owl-prev,
|
||||
.owl .owl-next,
|
||||
.owl .owl-dot {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.owl .owl-prev,
|
||||
.owl .owl-next {
|
||||
position: absolute;
|
||||
top: -86px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
padding: 0;
|
||||
color: var(--dark-gray-color);
|
||||
text-align: center;
|
||||
background-color: var(--white-color);
|
||||
border: 1px solid var(--light-gray-color);
|
||||
border-radius: 3px;
|
||||
outline: none;
|
||||
transition: color 0.5s var(--animation-base);
|
||||
}
|
||||
|
||||
.owl .owl-prev.disabled,
|
||||
.owl .owl-next.disabled {
|
||||
color: var(--mid-gray-color);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.owl .owl-prev .icon,
|
||||
.owl .owl-next .icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.owl .owl-prev {
|
||||
right: 34px;
|
||||
}
|
||||
|
||||
.owl .owl-next {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.owl .owl-dots {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.owl .owl-dot {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.owl .owl-dot span {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background-color: var(--light-gray-color);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.owl .owl-dot.active span {
|
||||
background-color: var(--black-color);
|
||||
}
|
||||
|
||||
.owl.owl-loaded {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.owl.owl-loading {
|
||||
display: block;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.owl.owl-hidden {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.owl.owl-refresh .owl-item {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.owl.owl-drag .owl-item {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.owl.owl-grab {
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.no-js .owl {
|
||||
display: block;
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
.u-permalink {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 50;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.u-placeholder {
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
background-color: var(--lighter-gray-color);
|
||||
}
|
||||
|
||||
.u-placeholder::before {
|
||||
display: block;
|
||||
content: "";
|
||||
}
|
||||
|
||||
.u-placeholder.horizontal::before {
|
||||
padding-bottom: 50%;
|
||||
}
|
||||
|
||||
.u-placeholder.rectangle::before {
|
||||
padding-bottom: 62.5%;
|
||||
}
|
||||
|
||||
.u-placeholder.square::before {
|
||||
padding-bottom: 100%;
|
||||
}
|
||||
|
||||
.u-object-fit {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
Reference in New Issue
Block a user