feat: add basic layout
This commit adds some basic design tokens in the form of CSS variables. I got these from my Figma designs. Also added is dark mode support.
This commit is contained in:
parent
be3e4272c5
commit
ec00e2e544
5 changed files with 386 additions and 25 deletions
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{% include "partials/header.html" %}
|
{% include "partials/header.html" %}
|
||||||
<main id="main" class="wrapper">{{ content | safe }}</main>
|
<main id="main" class="wrapper flow">{{ content | safe }}</main>
|
||||||
{% include "partials/footer.html" %}
|
{% include "partials/footer.html" %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
@import "global/reset.css";
|
@import "global/reset.css";
|
||||||
@import "global/fonts.css";
|
@import "global/fonts.css";
|
||||||
|
@import "global/variables.css";
|
||||||
|
|
||||||
@import "global/global-styles.css";
|
@import "global/global-styles.css";
|
||||||
|
|
||||||
|
|
|
@ -4,41 +4,105 @@
|
||||||
Low-specificity, global styles that apply to the whole
|
Low-specificity, global styles that apply to the whole
|
||||||
project: https://cube.fyi/css.html
|
project: https://cube.fyi/css.html
|
||||||
*/
|
*/
|
||||||
|
html {
|
||||||
|
scrollbar-color: var(--color-primary) var(--color-indiglo-800);
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family:
|
accent-color: var(--color-primary);
|
||||||
Quattro,
|
background-color: var(--color-bg);
|
||||||
ui-sans-serif,
|
color: var(--color-text);
|
||||||
system-ui,
|
font-family: var(--font-body), var(--font-fallback);
|
||||||
-apple-system,
|
font-size: var(--font-size-body);
|
||||||
"system-ui",
|
font-weight: var(--font-weight-body);
|
||||||
"Segoe UI",
|
letter-spacing: var(--font-tracking-body);
|
||||||
Roboto,
|
line-height: var(--font-line-height-body);
|
||||||
"Helvetica Neue",
|
}
|
||||||
Arial,
|
|
||||||
"Noto Sans",
|
h1,
|
||||||
sans-serif,
|
h2,
|
||||||
"Apple Color Emoji",
|
h3,
|
||||||
"Segoe UI Emoji",
|
h4,
|
||||||
"Segoe UI Symbol",
|
h5,
|
||||||
"Noto Color Emoji";
|
h6 {
|
||||||
|
font-family: var(--font-display);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-family: AnekLatin;
|
font-size: var(--font-size-heading-1);
|
||||||
font-weight: 800;
|
font-weight: var(--font-weight-heading-1);
|
||||||
|
letter-spacing: var(--font-tracking-heading-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
h2,
|
h2 {
|
||||||
h3 {
|
font-size: var(--font-size-heading-2);
|
||||||
font-family: AnekLatin;
|
font-weight: var(--font-weight-heading-2);
|
||||||
font-weight: 700;
|
letter-spacing: var(--font-tracking-heading-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
|
font-size: var(--font-size-heading-3);
|
||||||
|
font-weight: var(--font-weight-heading-3);
|
||||||
|
letter-spacing: var(--font-tracking-heading-3);
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration-color: black;
|
color: currentColor;
|
||||||
|
text-decoration-color: var(--color-primary);
|
||||||
text-decoration-thickness: 2px;
|
text-decoration-thickness: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover,
|
||||||
|
a:active,
|
||||||
|
a:focus-visible {
|
||||||
|
text-decoration-color: var(--color-primary-highlight);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
text-decoration-color: var(--color-primary-subtle);
|
||||||
|
}
|
||||||
|
|
||||||
|
ul li::marker {
|
||||||
|
color: var(--color-primary-faded);
|
||||||
|
}
|
||||||
|
|
||||||
|
ol li::marker {
|
||||||
|
color: rgba(0, 0, 0, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-inline-start: 2px solid var(--color-primary-faded);
|
||||||
|
margin-inline-start: 0;
|
||||||
|
padding-inline: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote > * + * {
|
||||||
|
margin-block-start: 1rem;
|
||||||
|
margin-inline-start: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
:focus-visible {
|
||||||
|
outline: 3px solid;
|
||||||
|
outline-color: var(--color-primary);
|
||||||
|
outline-offset: 0.3ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
font-weight: 650;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
html:focus-within {
|
||||||
|
scroll-behavior: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
*,
|
||||||
|
::after,
|
||||||
|
::before {
|
||||||
|
animation-duration: 0.01ms !important;
|
||||||
|
animation-iteration-count: 1 !important;
|
||||||
|
scroll-behavior: auto !important;
|
||||||
|
transition-duration: 0.01ms !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -2,4 +2,65 @@
|
||||||
:root {
|
:root {
|
||||||
--transition-duration: 250ms;
|
--transition-duration: 250ms;
|
||||||
--transition-timing: ease;
|
--transition-timing: ease;
|
||||||
|
|
||||||
|
--color-indiglo-50: #aae9d2;
|
||||||
|
--color-indiglo-100: #99e5ce;
|
||||||
|
--color-indiglo-200: #79ddcc;
|
||||||
|
--color-indiglo-300: #58d4d0;
|
||||||
|
--color-indiglo-400: #38bdcc;
|
||||||
|
--color-indiglo-500: #2c8daa;
|
||||||
|
--color-indiglo-600: #226186;
|
||||||
|
--color-indiglo-700: #193d61;
|
||||||
|
--color-indiglo-800: #10203d;
|
||||||
|
--color-indiglo-900: #060a18;
|
||||||
|
--color-indiglo-950: #020206;
|
||||||
|
|
||||||
|
--color-light: white;
|
||||||
|
--color-dark: black;
|
||||||
|
|
||||||
|
--color-bg: var(--color-light);
|
||||||
|
--color-text: var(--color-dark);
|
||||||
|
--color-primary: var(--color-indiglo-400);
|
||||||
|
--color-primary-highlight: var(--color-indiglo-300);
|
||||||
|
--color-primary-subtle: var(--color-indiglo-500);
|
||||||
|
--color-primary-faded: var(--color-indiglo-600);
|
||||||
|
--color-secondary: #ed5215;
|
||||||
|
|
||||||
|
--font-display: AnekLatin;
|
||||||
|
--font-body: Quattro;
|
||||||
|
--font-fallback: ui-sans-serif, system-ui, -apple-system, "system-ui",
|
||||||
|
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
|
||||||
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
|
||||||
|
--font-size-heading-1: 3rem;
|
||||||
|
--font-size-heading-2: 2rem;
|
||||||
|
--font-size-heading-3: 1.5rem;
|
||||||
|
--font-size-body: 1.125rem;
|
||||||
|
|
||||||
|
--font-weight-heading-1: 800;
|
||||||
|
--font-weight-heading-2: 700;
|
||||||
|
--font-weight-heading-3: 700;
|
||||||
|
--font-weight-body: 450;
|
||||||
|
|
||||||
|
--font-tracking-heading-1: -5%;
|
||||||
|
--font-tracking-heading-2: -5%;
|
||||||
|
--font-tracking-heading-3: -5%;
|
||||||
|
--font-tracking-body: -3%;
|
||||||
|
|
||||||
|
--font-line-height-heading-1: 3rem;
|
||||||
|
--font-line-height-heading-2: 2rem;
|
||||||
|
--font-line-height-heading-3: 1.5rem;
|
||||||
|
--font-line-height-body: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--color-bg: var(--color-dark);
|
||||||
|
--color-text: var(--color-light);
|
||||||
|
|
||||||
|
--color-primary: var(--color-indiglo-300);
|
||||||
|
--color-primary-highlight: var(--color-indiglo-200);
|
||||||
|
--color-primary-subtle: var(--color-indiglo-400);
|
||||||
|
--color-primary-faded: var(--color-indiglo-100);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: "base"
|
||||||
permalink: /index.html
|
permalink: /index.html
|
||||||
---
|
---
|
||||||
|
|
||||||
# Hello from index
|
# Hello from index. This is going to be a very large title so that it wraps around to the next line. Here I am typing a long title. Do you see how long this is? Holy moly it's going to be long.
|
||||||
|
|
||||||
This is the root page.
|
This is the root page.
|
||||||
|
|
||||||
|
@ -18,3 +18,238 @@ _**This is bold and italic text.**_
|
||||||
### Subsubheading
|
### Subsubheading
|
||||||
|
|
||||||
Here is [a link](https://wonderfulfrog.com)
|
Here is [a link](https://wonderfulfrog.com)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Advertisement :)**
|
||||||
|
|
||||||
|
- **[pica](https://nodeca.github.io/pica/demo/)** - high quality and fast image
|
||||||
|
resize in browser.
|
||||||
|
- **[babelfish](https://github.com/nodeca/babelfish/)** - developer friendly
|
||||||
|
i18n with plurals support and easy syntax.
|
||||||
|
|
||||||
|
You will like those projects!
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# h1 Heading 8-)
|
||||||
|
|
||||||
|
## h2 Heading
|
||||||
|
|
||||||
|
### h3 Heading
|
||||||
|
|
||||||
|
#### h4 Heading
|
||||||
|
|
||||||
|
##### h5 Heading
|
||||||
|
|
||||||
|
###### h6 Heading
|
||||||
|
|
||||||
|
## Horizontal Rules
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Typographic replacements
|
||||||
|
|
||||||
|
Enable typographer option to see result.
|
||||||
|
|
||||||
|
(c) (C) (r) (R) (tm) (TM) (p) (P) +-
|
||||||
|
|
||||||
|
test.. test... test..... test?..... test!....
|
||||||
|
|
||||||
|
!!!!!! ???? ,, -- ---
|
||||||
|
|
||||||
|
"Smartypants, double quotes" and 'single quotes'
|
||||||
|
|
||||||
|
## Emphasis
|
||||||
|
|
||||||
|
**This is bold text**
|
||||||
|
|
||||||
|
**This is bold text**
|
||||||
|
|
||||||
|
_This is italic text_
|
||||||
|
|
||||||
|
_This is italic text_
|
||||||
|
|
||||||
|
~~Strikethrough~~
|
||||||
|
|
||||||
|
## Blockquotes
|
||||||
|
|
||||||
|
> Blockquotes can also be nested...
|
||||||
|
>
|
||||||
|
> > ...by using additional greater-than signs right next to each other...
|
||||||
|
> >
|
||||||
|
> > > ...or with spaces between arrows.
|
||||||
|
|
||||||
|
## Lists
|
||||||
|
|
||||||
|
Unordered
|
||||||
|
|
||||||
|
- Create a list by starting a line with `+`, `-`, or `*`
|
||||||
|
- Sub-lists are made by indenting 2 spaces:
|
||||||
|
- Marker character change forces new list start:
|
||||||
|
- Ac tristique libero volutpat at
|
||||||
|
* Facilisis in pretium nisl aliquet
|
||||||
|
- Nulla volutpat aliquam velit
|
||||||
|
- Very easy!
|
||||||
|
|
||||||
|
Ordered
|
||||||
|
|
||||||
|
1. Lorem ipsum dolor sit amet
|
||||||
|
2. Consectetur adipiscing elit
|
||||||
|
3. Integer molestie lorem at massa
|
||||||
|
|
||||||
|
4. You can use sequential numbers...
|
||||||
|
5. ...or keep all the numbers as `1.`
|
||||||
|
|
||||||
|
Start numbering with offset:
|
||||||
|
|
||||||
|
57. foo
|
||||||
|
1. bar
|
||||||
|
|
||||||
|
## Code
|
||||||
|
|
||||||
|
Inline `code`
|
||||||
|
|
||||||
|
Indented code
|
||||||
|
|
||||||
|
// Some comments
|
||||||
|
line 1 of code
|
||||||
|
line 2 of code
|
||||||
|
line 3 of code
|
||||||
|
|
||||||
|
Block code "fences"
|
||||||
|
|
||||||
|
```
|
||||||
|
Sample text here...
|
||||||
|
```
|
||||||
|
|
||||||
|
Syntax highlighting
|
||||||
|
|
||||||
|
```js
|
||||||
|
var foo = function (bar) {
|
||||||
|
return bar++;
|
||||||
|
};
|
||||||
|
|
||||||
|
console.log(foo(5));
|
||||||
|
```
|
||||||
|
|
||||||
|
## Tables
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
| ------ | ------------------------------------------------------------------------- |
|
||||||
|
| data | path to data files to supply the data that will be passed into templates. |
|
||||||
|
| engine | engine to be used for processing templates. Handlebars is the default. |
|
||||||
|
| ext | extension to be used for dest files. |
|
||||||
|
|
||||||
|
Right aligned columns
|
||||||
|
|
||||||
|
| Option | Description |
|
||||||
|
| -----: | ------------------------------------------------------------------------: |
|
||||||
|
| data | path to data files to supply the data that will be passed into templates. |
|
||||||
|
| engine | engine to be used for processing templates. Handlebars is the default. |
|
||||||
|
| ext | extension to be used for dest files. |
|
||||||
|
|
||||||
|
## Links
|
||||||
|
|
||||||
|
[link text](http://dev.nodeca.com)
|
||||||
|
|
||||||
|
[link with title](http://nodeca.github.io/pica/demo/ "title text!")
|
||||||
|
|
||||||
|
Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
|
||||||
|
|
||||||
|
## Images
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
Like links, Images also have a footnote style syntax
|
||||||
|
|
||||||
|
![Alt text][id]
|
||||||
|
|
||||||
|
With a reference later in the document defining the URL location:
|
||||||
|
|
||||||
|
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
|
||||||
|
|
||||||
|
## Plugins
|
||||||
|
|
||||||
|
The killer feature of `markdown-it` is very effective support of
|
||||||
|
[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
|
||||||
|
|
||||||
|
### [Emojies](https://github.com/markdown-it/markdown-it-emoji)
|
||||||
|
|
||||||
|
> Classic markup: :wink: :cry: :laughing: :yum:
|
||||||
|
>
|
||||||
|
> Shortcuts (emoticons): :-) :-( 8-) ;)
|
||||||
|
|
||||||
|
see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
|
||||||
|
|
||||||
|
### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
|
||||||
|
|
||||||
|
- 19^th^
|
||||||
|
- H~2~O
|
||||||
|
|
||||||
|
### [\<ins>](https://github.com/markdown-it/markdown-it-ins)
|
||||||
|
|
||||||
|
++Inserted text++
|
||||||
|
|
||||||
|
### [\<mark>](https://github.com/markdown-it/markdown-it-mark)
|
||||||
|
|
||||||
|
==Marked text==
|
||||||
|
|
||||||
|
### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)
|
||||||
|
|
||||||
|
Footnote 1 link[^first].
|
||||||
|
|
||||||
|
Footnote 2 link[^second].
|
||||||
|
|
||||||
|
Inline footnote^[Text of inline footnote] definition.
|
||||||
|
|
||||||
|
Duplicated footnote reference[^second].
|
||||||
|
|
||||||
|
[^first]: Footnote **can have markup**
|
||||||
|
|
||||||
|
and multiple paragraphs.
|
||||||
|
|
||||||
|
[^second]: Footnote text.
|
||||||
|
|
||||||
|
### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)
|
||||||
|
|
||||||
|
Term 1
|
||||||
|
|
||||||
|
: Definition 1
|
||||||
|
with lazy continuation.
|
||||||
|
|
||||||
|
Term 2 with _inline markup_
|
||||||
|
|
||||||
|
: Definition 2
|
||||||
|
|
||||||
|
{ some code, part of Definition 2 }
|
||||||
|
|
||||||
|
Third paragraph of definition 2.
|
||||||
|
|
||||||
|
_Compact style:_
|
||||||
|
|
||||||
|
Term 1
|
||||||
|
~ Definition 1
|
||||||
|
|
||||||
|
Term 2
|
||||||
|
~ Definition 2a
|
||||||
|
~ Definition 2b
|
||||||
|
|
||||||
|
### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
|
||||||
|
|
||||||
|
This is HTML abbreviation example.
|
||||||
|
|
||||||
|
It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
|
||||||
|
|
||||||
|
\*[HTML]: Hyper Text Markup Language
|
||||||
|
|
||||||
|
### [Custom containers](https://github.com/markdown-it/markdown-it-container)
|
||||||
|
|
||||||
|
::: warning
|
||||||
|
_here be dragons_
|
||||||
|
:::
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue