hugo-theme-minima/assets/sass/sketch.scss

282 lines
4.1 KiB
SCSS
Raw Normal View History

2021-08-05 10:30:29 +02:00
:root {
--pm: #0fa0ce;
--bd: #e1e1e1;
--bg: #fff;
--ft: #222;
--tag: #333;
--w-mobile: 640px;
}
html.dark {
--bg: #262d33;
--ft: #c5c4c4;
--bd: #555;
--tag: #999;
--ovo-ft: var(--ft);
--ovo-bdr: var(--bd);
--ovo-bg: var(--bg);
--ovo-bg-hvr: #555;
--ovo-tag: #30363d;
}
body {
font-family: Helvetica, sans-serif;
max-width: var(--w-mobile);
margin: 50px auto 0;
font-size: 16px;
font-weight: 400;
color: var(--ft);
background-color: var(--bg);
transition-property: background-color, border-color, color;
transition-duration: .5s;
}
h1,h2,h3,h4,h5 {
font-family: 'Noto Serif SC', 'Times New Roman', sans-serif;
font-weight: 700;
line-height: 1.5;
}
p {
margin-top: 0;
line-height: 1.5;
text-align: left;
}
hr {
margin: 30px 0;
border-width: 0;
border-top: 1px solid var(--bd);
}
pre,
code {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: 13px;
}
2021-08-07 16:01:03 +02:00
p code {
background-color: var(--bd);
padding: .2em .4em;
// border-radius: 6px;
}
2021-08-05 10:30:29 +02:00
a {
text-decoration: none;
}
a:not(.icon) {
color: inherit;
text-decoration: underline;
text-decoration-color: var(--pm);
background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0) 50%, var(--pm) 50% );
background-size: 100% 200%;
transition: background-position .2s ease-in-out;
}
a:not(.icon):hover,
a:not(.icon):focus {
background-position: 0 100%;
color: #fff;
}
a.icon:hover {
transform: translateY(-5px);
transition: transform .3s ease-in-out;
}
main {
animation: showup 0.7s;
}
.row {
display: flex;
align-items: center;
}
.col {
display: flex;
flex-direction: column;
}
.jc-bt {
justify-content: space-between;
}
.as-s {
align-self: start;
}
.ai-c {
align-items: center;
}
.gap-0_5 {
gap: .8rem;
}
.gap-1 {
gap: 1rem;
row-gap: 1rem;
}
.gap-2 {
gap: 2rem;
row-gap: 2rem;
}
.gap-3 {
gap: 3rem;
row-gap: 3rem;
}
.lg-1 {
font-size: 1.2em;
}
.sm-1 {
font-size: .8em;
}
.mtb-1 {
margin: 1em 0;
}
.mtb-2 {
margin: 2em 0;
}
.mb-1 {
margin-bottom: 1em;
}
.mb-0 {
margin-bottom: 0;
}
.mt-2 {
margin-top: 2em;
}
.ml-1 {
margin-left: 1em;
}
.ml-2 {
margin-left: 2em;
}
.mr-2 {
margin-right: 2em;
}
2021-08-05 10:30:29 +02:00
.mw-6 {
min-width: 6em;
}
.c-tag {
color: var(--tag);
}
.btn {
cursor: pointer;
}
.hidden {
display: none;
}
.tag-pm {
font-size: .7em;
font-weight: bold;
line-height: 1;
color: #fff;
background-color: var(--pm);
border-radius: 20px;
padding: 2px 8px;
}
details.toc ul {
list-style-type: none;
padding-inline-start: 1em;
margin: 0;
}
details.toc ul>li {
margin: 1em 0;
}
.nowrap {
white-space: nowrap;
overflow: auto;
}
@keyframes showup {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: none;
}
}
@media (max-width: 640px) {
body {
margin: 1em 2em;
}
.row-mob {
flex-direction: column;
align-items: flex-start;
gap: 0;
row-gap: 0;
}
.al-c-mob {
align-items: center;
}
.col-rev-mob {
flex-direction: column-reverse;
}
.sm-2-mob {
font-size: .9em;
}
.mb-0_5-mob {
margin-bottom: .5em;
}
.mb-1_5-mob {
margin-bottom: 1.5em;
}
}
/* Scroll bar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
background: rgba(128, 128, 128, .7);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(128, 128, 128, .2);
}
::-webkit-scrollbar-thumb:active {
background-color: rgb(128, 128, 128);
}
.nowrap::-webkit-scrollbar {
display: none;
width: 0;
}