diff options
Diffstat (limited to 'src/index.css')
| -rw-r--r-- | src/index.css | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/src/index.css b/src/index.css index ec2585e..910f8af 100644 --- a/src/index.css +++ b/src/index.css @@ -1,13 +1,30 @@ -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; +:root { + --dark-grey: #282c34; + --white: #fff; + --red: #ff7e7e; + + --font-xxl: 44px; + --font-xl: 38px; + --font-l: 32px; + --font-m: 26px; + --font-s: 20px; +} + +html { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + background-color: var(--dark-grey); + color: var(--white); } -code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', - monospace; +body { + margin: 60px auto; + padding: 0 10px; + max-width: 900px; + text-align: left; } + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; +}
\ No newline at end of file |
