GoBlog/original-assets/styles/styles.scss

217 lines
3.3 KiB
SCSS
Raw Normal View History

2020-09-19 10:57:14 +00:00
$colors: (
background: #fff,
background-dark: #000,
primary: #000,
primary-dark: #fff
2020-09-19 10:57:14 +00:00
);
@mixin color($property, $varName) {
#{$property}: map-get($colors, $varName);
#{$property}: var(--#{$varName}, map-get($colors, $varName));
}
@mixin color-border($property, $val1, $val2, $varName) {
#{$property}: #{$val1} #{$val2} map-get($colors, $varName);
#{$property}: #{$val1} #{$val2} var(--#{$varName}, map-get($colors, $varName));
}
@mixin lightmode {
--background: #{map-get($colors, background)};
--primary: #{map-get($colors, primary)};
color: #000;
}
@mixin darkmode {
--background: #{map-get($colors, background-dark)};
--primary: #{map-get($colors, primary-dark)};
color: #fff;
}
.sans-serif {
font-family: sans-serif;
}
2020-12-21 19:40:08 +00:00
.monospace {
font-family: monospace;
}
2020-09-19 10:57:14 +00:00
html {
@include lightmode;
@media (prefers-color-scheme: dark) {
@include darkmode;
}
scrollbar-color: var(--primary) transparent;
}
body {
@extend .sans-serif;
@include color(background, background);
line-height: 1.5;
margin: 0 auto;
max-width: 700px;
padding: 10px;
word-break: break-word;
overflow-wrap: break-word;
* {
@include color(color, primary);
max-width: 100%;
}
}
header {
@extend .border-bottom;
padding: 10px 0;
* {
margin-top: 0;
margin-bottom: 0;
}
}
h1 a, h2 a {
text-decoration: none;
}
img {
width: 100%;
}
input, textarea, select, button, .button, ::file-selector-button, ::-webkit-file-upload-button {
2020-09-19 10:57:14 +00:00
@include color-border(border, 1px, solid, primary);
@include color(background, background);
@include color(color, primary);
@extend .sans-serif;
padding: 5px 10px;
border-radius: 0;
box-sizing: border-box;
text-decoration: none;
font-size: 1rem;
line-height: 1.5;
2020-09-19 10:57:14 +00:00
}
form {
input, textarea, select {
margin-bottom: 5px;
}
2020-12-13 10:01:19 +00:00
}
2020-09-19 10:57:14 +00:00
.fw-form {
@extend .fw;
2020-12-15 16:40:14 +00:00
input:not([type]), input[type="text"], input[type="email"], input[type="url"], input[type="password"], textarea {
2020-09-19 10:57:14 +00:00
@extend .fw;
}
}
blockquote {
@include color-border(border-left, 5px, solid, primary);
padding-left: 20px;
margin-left: 0;
}
pre {
padding: 10px;
@include color-border(border, 1px, solid, primary);
white-space: pre-wrap;
}
:not(pre) > code {
font-size: 1rem;
// Invert
@include color(color, background);
@include color(background, primary);
2020-09-19 10:57:14 +00:00
}
code {
font-family: monospace;
}
2021-01-04 19:14:44 +00:00
table {
border-collapse: collapse;
border-spacing: 0;
}
tr, td, th {
@include color-border(border, 1px, solid, primary);
padding: 5px;
}
2020-09-19 10:57:14 +00:00
footer {
@extend .border-top;
padding: 10px 0;
* {
margin-top: 0;
margin-bottom: 0;
}
}
.border-top {
@include color-border(border-top, 1px, solid, primary);
}
.border-bottom {
@include color-border(border-bottom, 1px, solid, primary);
}
.p {
display: block;
margin-top: 1em;
margin-bottom: 1em;
}
.flex {
display: flex;
}
.hide {
display: none;
}
.in {
display: inline;
}
2020-09-19 10:57:14 +00:00
.fw {
width: 100%;
}
.ct {
text-align: center;
}
2020-12-21 19:40:08 +00:00
.h400p {
height: 400px;
}
2021-01-23 16:24:47 +00:00
.captchaimg {
background-color: #fff;
2021-01-23 16:24:47 +00:00
}
2021-02-15 20:35:05 +00:00
.tal {
text-align: left;
}
.tar {
text-align: right;
}
2020-09-19 10:57:14 +00:00
/* Print */
@media print {
html {
@include lightmode;
}
body {
font-family: serif;
max-width: inherit;
}
nav,
#post-actions,
#related,
#interactions {
display: none;
}
}