Compare commits
No commits in common. "f88d957c1a93214774afdb8bb2b880f08d2733c0" and "b01dfdb992103a6321269bfdadf132a948772f82" have entirely different histories.
f88d957c1a
...
b01dfdb992
6 changed files with 15 additions and 104 deletions
|
|
@ -1,81 +0,0 @@
|
||||||
:root {
|
|
||||||
--light-yellow: #e5c07b;
|
|
||||||
--dark-yellow: #d19a66;
|
|
||||||
--blue: #61afef;
|
|
||||||
--cyan: #56b6c2;
|
|
||||||
--light-red: #e06c75;
|
|
||||||
--dark-red: #be5046;
|
|
||||||
--comment-gray: #5c6370;
|
|
||||||
--green-light: #c678dd;
|
|
||||||
--comment-color: var(--comment-gray);
|
|
||||||
--string-color: var(--text-color);
|
|
||||||
--variable-color: var(--light-yellow);
|
|
||||||
--field-color: var(--light-yellow);
|
|
||||||
--keyword-function-color: var(--text-color-accent);
|
|
||||||
--keyword-color: var(--green-light);
|
|
||||||
--keyword-modifier-color: var(--light-red);
|
|
||||||
--punctuation-bracket-color: var(--cyan);
|
|
||||||
--type-color: var(--light-red);
|
|
||||||
--variable-parameter-color: var(--blue);
|
|
||||||
--function-call-color: var(--blue);
|
|
||||||
---builtin-color: var(--green-light);
|
|
||||||
--operator-color: var(--light-red);
|
|
||||||
--qualifier-color: var(--light-red);
|
|
||||||
--attribute-color: var(--light-red);
|
|
||||||
}
|
|
||||||
|
|
||||||
code .comment {
|
|
||||||
color: var(--comment-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .string {
|
|
||||||
color: var(--string-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .variable {
|
|
||||||
color: var(--variable-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .variable.variable_parameter {
|
|
||||||
color: var(--variable-parameter-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .field {
|
|
||||||
color: var(--field-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .keyword_function {
|
|
||||||
color: var(--keyword-function-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .keyword_modifier {
|
|
||||||
color: var(--keyword-modifier-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .keyword {
|
|
||||||
color: var(--keyword-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .punctuation_bracket {
|
|
||||||
color: var(--punctuation-bracket-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .function_call {
|
|
||||||
color: var(--function-call-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .builtin {
|
|
||||||
color: var(--builtin-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .operator {
|
|
||||||
color: var(--operator-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .qualifier {
|
|
||||||
color: var(--qualifier-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
code.zig .attribute {
|
|
||||||
color: var(--attribute-color);
|
|
||||||
}
|
|
||||||
|
|
@ -10,8 +10,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--font-family: "Iosevka", "NerdFontsSymbols Nerd Font", monospace;
|
// --font-family: "Pixel Code", monospace;
|
||||||
--font-family-titles: "AcPlus IBM VGA 9x16", "NerdFontsSymbols Nerd Font", monospace;
|
// --font-family: "Maple Mono", monospace;
|
||||||
|
// --font-family: "JetBrains Mono", monospace;
|
||||||
|
--font-family: "Iosevka", monospace;
|
||||||
|
// --font-family-alt: "Pixel Code", monospace;
|
||||||
|
// --font-family-alt: "AcPlus IBM VGA 9x16", monospace;
|
||||||
|
--font-family-titles: "AcPlus IBM VGA 9x16", monospace;
|
||||||
|
// --font-family-titles: "Maple Mono", monospace;
|
||||||
|
// --font-family-titles: "Pixel Code", monospace;
|
||||||
--line-height: 2.00rem;
|
--line-height: 2.00rem;
|
||||||
--border-thickness: 2px;
|
--border-thickness: 2px;
|
||||||
--text-color: #333;
|
--text-color: #333;
|
||||||
|
|
@ -19,6 +26,7 @@
|
||||||
--text-color-accent: #000;
|
--text-color-accent: #000;
|
||||||
--background-color: #fff;
|
--background-color: #fff;
|
||||||
--background-color-alt: #eee;
|
--background-color-alt: #eee;
|
||||||
|
// --transform: uppercase;
|
||||||
|
|
||||||
--font-weight-normal: 500;
|
--font-weight-normal: 500;
|
||||||
--font-weight-medium: 600;
|
--font-weight-medium: 600;
|
||||||
|
|
@ -98,23 +106,13 @@ h1 {
|
||||||
font-weight: var(--font-weight-titles);
|
font-weight: var(--font-weight-titles);
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 3rem;
|
|
||||||
font-family: var(--font-family-titles);
|
|
||||||
font-weight: var(--font-weight-titles);
|
|
||||||
text-transform: var(--transform);
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
font-family: var(--font-family-titles);
|
font-family: var(--font-family-titles);
|
||||||
font-weight: var(--font-weight-titles);
|
font-weight: var(--font-weight-titles);
|
||||||
text-transform: var(--transform);
|
text-transform: var(--transform);
|
||||||
|
// margin-left: calc(var(--line-height) * 1);
|
||||||
}
|
}
|
||||||
h4 {
|
text-transform: var(--transform)
|
||||||
font-size: 1.6rem;
|
|
||||||
font-family: var(--font-family-titles);
|
|
||||||
font-weight: var(--font-weight-titles);
|
|
||||||
text-transform: var(--transform);
|
|
||||||
}
|
|
||||||
hr {
|
hr {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
@ -286,7 +284,7 @@ figcaption {
|
||||||
|
|
||||||
ul, ol {
|
ul, ol {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: var(--line-height) 0 var(--line-height);
|
margin: 0 0 var(--line-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
|
@ -321,7 +319,7 @@ li::marker {
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
height: var(--line-height);
|
height: var(--line-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
input, button, textarea {
|
input, button, textarea {
|
||||||
|
|
@ -341,7 +339,6 @@ input, button, textarea {
|
||||||
-webkit-font-smoothing: inherit;
|
-webkit-font-smoothing: inherit;
|
||||||
-moz-osx-font-smoothing: inherit;
|
-moz-osx-font-smoothing: inherit;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
appearance: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=checkbox] {
|
input[type=checkbox] {
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,3 @@
|
||||||
.nf-fa-edit:before {
|
.nf-fa-edit:before {
|
||||||
content: "\f044";
|
content: "\f044";
|
||||||
}
|
}
|
||||||
.nf-fa-clipboard_list:before {
|
|
||||||
content: "\ed7b";
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -6,4 +6,3 @@ U+e889
|
||||||
U+eda4
|
U+eda4
|
||||||
U+e8ef
|
U+e8ef
|
||||||
U+f044
|
U+f044
|
||||||
U+ed7b
|
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,8 @@
|
||||||
<meta name="author" content="CJ van den Berg">
|
<meta name="author" content="CJ van den Berg">
|
||||||
<link rel="icon" type="image/png" href="$site.asset('img/flow-control.png').link()">
|
<link rel="icon" type="image/png" href="$site.asset('img/flow-control.png').link()">
|
||||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/reset.css').link()">
|
<link rel="stylesheet" type="text/css" href="$site.asset('css/reset.css').link()">
|
||||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/webfont.css').link()">
|
|
||||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/index.css').link()">
|
<link rel="stylesheet" type="text/css" href="$site.asset('css/index.css').link()">
|
||||||
<link rel="stylesheet" type="text/css" href="$site.asset('css/highlight.css').link()">
|
<link rel="stylesheet" type="text/css" href="$site.asset('css/webfont.css').link()">
|
||||||
<title :text="$site.title"></title>
|
<title :text="$site.title"></title>
|
||||||
<super>
|
<super>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue