diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-05-09 18:54:05 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-05-09 18:54:05 +0200 |
commit | 2604a4676abb5ab9d5c01aa2064648dbba0b6a06 (patch) | |
tree | 4a01441222c20747b68889310528cad82e5e86a1 /styles | |
parent | 5a0f2ed7af3bb804219c1be07969103572384ceb (diff) |
beginnings editor
Diffstat (limited to 'styles')
-rw-r--r-- | styles/globals.css | 6 | ||||
-rw-r--r-- | styles/paper.css | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css index fc41e88..028d585 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -8,3 +8,9 @@ html, body { font-family: "Inter", sans-serif; } +.keyframe { fill: var(--gruble); } + +h1 { font-size: 1.25rem; } +h2 { font-size: 1.125rem; } +h3 { font-size: 1rem; } + diff --git a/styles/paper.css b/styles/paper.css new file mode 100644 index 0000000..a0e5a99 --- /dev/null +++ b/styles/paper.css @@ -0,0 +1,8 @@ +.MuiAppBar-root.MuiAppBar-colorTransparent { + background-color: var(--c300); +} + +.MuiAppBar-root.MuiAppBar-colorTransparent h1 { + color: var(--mint); + margin-left: 16px; +} |