fix headings, buttons and make it adaptable for updated terminal.css
This commit is contained in:
parent
ff186322b8
commit
d2397d672d
5 changed files with 147 additions and 39 deletions
|
@ -12,7 +12,6 @@ a.button {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 8px 18px;
|
padding: 8px 18px;
|
||||||
margin: 5px 0;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 8;
|
border-radius: 8;
|
||||||
|
@ -73,19 +72,19 @@ a.button.inline:hover {
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.button.inline:before {
|
a.button.inline::before {
|
||||||
content: "["
|
content: "["
|
||||||
}
|
}
|
||||||
|
|
||||||
a.button.inline:after {
|
a.button.inline::after {
|
||||||
content: "]"
|
content: "]"
|
||||||
}
|
}
|
||||||
|
|
||||||
a.button.inline.prev:before {
|
a.button.inline.prev::before {
|
||||||
content: "← ["
|
content: "← ["
|
||||||
}
|
}
|
||||||
|
|
||||||
a.button.inline.next:after {
|
a.button.inline.next::after {
|
||||||
content: "] →"
|
content: "] →"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
margin-bottom: 15px !important;
|
margin-bottom: 15px !important;
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
border-bottom: 3px dotted var(--accent);
|
border-bottom: 3px dotted var(--accent);
|
||||||
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-title::after {
|
.post-title::after {
|
||||||
|
@ -109,6 +110,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.hanchor {
|
.hanchor {
|
||||||
|
position: absolute;
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
|
|
@ -1,20 +1,26 @@
|
||||||
@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Fira+Code:wght@700&display=swap");
|
@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Fira+Code:wght@400;700&display=swap");
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--background: #222129;
|
--background: #222129;
|
||||||
--foreground: #ffffff;
|
--foreground: #ffffff;
|
||||||
--accent: #ffa86a;
|
--accent: #ffa86a;
|
||||||
|
--font-size: 1rem;
|
||||||
|
--line-height: 1.54rem;
|
||||||
--radius: 0px;
|
--radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*:before,
|
*:before,
|
||||||
*:after {
|
*:after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -25,7 +31,8 @@ body {
|
||||||
Ubuntu Mono,
|
Ubuntu Mono,
|
||||||
monospace;
|
monospace;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.54;
|
font-weight: 400;
|
||||||
|
line-height: var(--line-height);
|
||||||
letter-spacing: -0.02em;
|
letter-spacing: -0.02em;
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
|
@ -36,47 +43,107 @@ body {
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
::placeholder {
|
::placeholder {
|
||||||
color: color-mix(in srgb var(--foreground) 50%, black);
|
color: color-mix(in srgb var(--foreground) 50%, black);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2 {
|
||||||
|
font-size: calc(var(--font-size) * 1.1);
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-decoration: underline;
|
||||||
|
text-decoration-thickness: 2px;
|
||||||
|
text-underline-offset: calc(var(--font-size) * 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6 {
|
||||||
|
font-size: calc(var(--font-size) * 1.1);
|
||||||
|
letter-spacing: 0.04em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
p,
|
||||||
|
ul,
|
||||||
|
ol,
|
||||||
|
img,
|
||||||
|
figure,
|
||||||
|
video,
|
||||||
|
table {
|
||||||
|
margin: calc(var(--line-height) * 1.2) 0;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
button,
|
|
||||||
.button,
|
button {
|
||||||
a.button {
|
|
||||||
position: relative;
|
position: relative;
|
||||||
font: inherit;
|
font: inherit;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: var(--accent);
|
background: transparent;
|
||||||
color: var(--background);
|
color: var(--accent);
|
||||||
padding: 5px 18px;
|
padding: 5px 18px;
|
||||||
margin: 5px 0;
|
border: 4px solid var(--accent);
|
||||||
border: 1px solid var(--accent);
|
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
transition: background 0.15s linear;
|
transition: background 0.15s linear;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
button:hover,
|
|
||||||
.button:hover,
|
button:hover {
|
||||||
a.button:hover {
|
background: color-mix(in srgb, var(--accent) 15%, transparent);
|
||||||
background: color-mix(in srgb, var(--accent) 85%, transparent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
button:focus-visible,
|
button:focus-visible,
|
||||||
.button:focus-visible,
|
|
||||||
a.button:focus-visible,
|
|
||||||
a:focus-visible {
|
a:focus-visible {
|
||||||
outline: 1px solid var(--accent);
|
outline: 1px solid var(--accent);
|
||||||
outline-offset: 2px;
|
outline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset {
|
fieldset {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border: 1px dashed var(--foreground);
|
border: 2px solid var(--foreground);
|
||||||
|
border-radius: calc(var(--radius) * 1.6);
|
||||||
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fieldset *:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset input,
|
||||||
|
fieldset select,
|
||||||
|
fieldset textarea,
|
||||||
|
fieldset label,
|
||||||
|
fieldset button {
|
||||||
|
margin-top: calc(var(--line-height) * 0.5);
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
label input {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
textarea,
|
textarea,
|
||||||
select {
|
select {
|
||||||
|
@ -85,10 +152,14 @@ select {
|
||||||
border: 1px solid var(--foreground);
|
border: 1px solid var(--foreground);
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 5px 0;
|
|
||||||
font: inherit;
|
font: inherit;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type="checkbox"] {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
input:focus-visible,
|
input:focus-visible,
|
||||||
input:active,
|
input:active,
|
||||||
textarea:focus-visible,
|
textarea:focus-visible,
|
||||||
|
@ -99,11 +170,13 @@ select:active {
|
||||||
outline: 1px solid var(--accent);
|
outline: 1px solid var(--accent);
|
||||||
outline-offset: 2px;
|
outline-offset: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:active,
|
input:active,
|
||||||
textarea:active,
|
textarea:active,
|
||||||
select:active {
|
select:active {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
background-image: linear-gradient(
|
background-image: linear-gradient(
|
||||||
45deg,
|
45deg,
|
||||||
|
@ -118,17 +191,21 @@ select {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
padding-right: 40px;
|
padding-right: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
select option {
|
select option {
|
||||||
background: var(--background);
|
background: var(--background);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
box-shadow: inset 0 0 0 3px var(--background);
|
box-shadow: inset 0 0 0 3px var(--background);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"]:checked {
|
input[type="checkbox"]:checked {
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display: block;
|
display: block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -137,6 +214,12 @@ img {
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
figure img,
|
||||||
|
figure video {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
figure figcaption {
|
figure figcaption {
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
color: var(--background);
|
color: var(--background);
|
||||||
|
@ -144,22 +227,31 @@ figure figcaption {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
margin-top: -8px;
|
margin-top: -8px;
|
||||||
|
border-radius: 0 0 var(--radius) var(--radius);
|
||||||
}
|
}
|
||||||
p {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
ul,
|
ul,
|
||||||
ol {
|
ol {
|
||||||
margin-left: 4ch;
|
margin-left: 4ch;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul ul,
|
||||||
|
ul ol,
|
||||||
|
ol ul,
|
||||||
|
ol ol {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
li::marker {
|
li::marker {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
ul li,
|
ul li,
|
||||||
ol li {
|
ol li {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
code,
|
code,
|
||||||
kbd {
|
kbd {
|
||||||
font-family:
|
font-family:
|
||||||
|
@ -169,12 +261,13 @@ kbd {
|
||||||
Ubuntu Mono,
|
Ubuntu Mono,
|
||||||
monospace !important;
|
monospace !important;
|
||||||
font-feature-settings: normal;
|
font-feature-settings: normal;
|
||||||
background: color-mix(in srgb, var(--accent) 10%, transparent);
|
background: color-mix(in srgb, var(--foreground) 5%, transparent);
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
padding: 1px 6px;
|
padding: 1px 6px;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd {
|
kbd {
|
||||||
border-top: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
|
border-top: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
|
||||||
border-left: 1px solid var(--accent);
|
border-left: 1px solid var(--accent);
|
||||||
|
@ -182,21 +275,24 @@ kbd {
|
||||||
border-bottom: 4px solid var(--accent);
|
border-bottom: 4px solid var(--accent);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
code code {
|
code code {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
tab-size: 4;
|
tab-size: 4;
|
||||||
background: color-mix(in srgb, var(--accent) 5%, transparent) !important;
|
background: color-mix(in srgb, var(--foreground) 5%, transparent) !important;
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
padding: 20px 10px;
|
padding: 20px 10px;
|
||||||
font-size: 0.95rem !important;
|
font-size: 0.95rem !important;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
border: 1px solid color-mix(in srgb, var(--accent) 10%, transparent);
|
border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
pre code {
|
pre code {
|
||||||
background: none !important;
|
background: none !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -204,28 +300,31 @@ pre code {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr {
|
abbr {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-decoration-style: wavy;
|
text-decoration-style: wavy;
|
||||||
text-decoration-color: var(--accent);
|
text-decoration-color: var(--accent);
|
||||||
cursor: help;
|
cursor: help;
|
||||||
}
|
}
|
||||||
abbr:hover:before {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
sub {
|
sub {
|
||||||
bottom: -0.25em;
|
bottom: -0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
top: -0.25em;
|
top: -0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
mark {
|
mark {
|
||||||
background: color-mix(in srgb, var(--accent) 45%, transparent);
|
background: color-mix(in srgb, var(--accent) 45%, transparent);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-top: 1px solid var(--accent);
|
border-top: 1px solid var(--accent);
|
||||||
|
@ -233,6 +332,7 @@ blockquote {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 25px;
|
padding: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote:before {
|
blockquote:before {
|
||||||
content: ">";
|
content: ">";
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -240,31 +340,38 @@ blockquote:before {
|
||||||
left: 0;
|
left: 0;
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote p:first-child {
|
blockquote p:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote p:last-child {
|
blockquote p:last-child {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
table-layout: auto;
|
table-layout: auto;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
|
||||||
table,
|
table,
|
||||||
th,
|
th,
|
||||||
td {
|
td {
|
||||||
border: 1px dashed var(--accent);
|
border: 2px solid var(--foreground);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
background: color-mix(in srgb, var(--accent) 10%, transparent);
|
color: var(--foreground);
|
||||||
color: var(--accent);
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.04em;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
background: var(--accent);
|
background: var(--accent);
|
||||||
height: 1px;
|
height: 2px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,9 +16,9 @@
|
||||||
|
|
||||||
{{ range $paginator.Pages }}
|
{{ range $paginator.Pages }}
|
||||||
<article class="post on-list">
|
<article class="post on-list">
|
||||||
<h1 class="post-title">
|
<h2 class="post-title">
|
||||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
</h1>
|
</h2>
|
||||||
|
|
||||||
<div class="post-meta">
|
<div class="post-meta">
|
||||||
{{- if .Date -}}
|
{{- if .Date -}}
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
{{ range .Paginator.Pages }}
|
{{ range .Paginator.Pages }}
|
||||||
<article class="post on-list">
|
<article class="post on-list">
|
||||||
<h1 class="post-title">
|
<h2 class="post-title">
|
||||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
</h1>
|
</h2>
|
||||||
<div class="post-meta">
|
<div class="post-meta">
|
||||||
{{- if .Date -}}
|
{{- if .Date -}}
|
||||||
<time class="post-date">
|
<time class="post-date">
|
||||||
|
|
Loading…
Reference in a new issue