diff options
| author | Jacky Zhao <[email protected]> | 2021-03-06 17:57:24 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-06 17:57:24 -0800 |
| commit | 5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8 (patch) | |
| tree | 5a09bea364331dd0f41510153924065b815b702e /frontend/src/css | |
| parent | fix(typo): public api docs endpoint (diff) | |
| parent | fix password modal (diff) | |
| download | ctrl-v-5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8.tar.xz ctrl-v-5dd02b5c2acd7a4c408ce9ffa1d95e208d20bbc8.zip | |
Merge pull request #70 from jackyzha0/visual-overhaul
Diffstat (limited to 'frontend/src/css')
| -rw-r--r-- | frontend/src/css/index.css | 41 |
1 files changed, 4 insertions, 37 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css index fcda1a3..0340813 100644 --- a/frontend/src/css/index.css +++ b/frontend/src/css/index.css @@ -4,20 +4,13 @@ } } -body { - margin: 0; - padding: 0; - background-color: #faf9f5; - font-family: 'Lora', serif; -} - form { width: 100%; } textarea, input[type=text], input[type=password], .Dropdown-root { width: 100%; - font-family: 'Roboto Mono', monospace; + font-family: 'JetBrains Mono', monospace; font-size: 0.8em; padding: calc(0.8em - 1px); border-radius: 3px; @@ -37,7 +30,7 @@ textarea, input[type=text], input[type=password], .Dropdown-root { code, pre { background: #00000000; - font-family: 'Roboto Mono', monospace; + font-family: 'JetBrains Mono', monospace; padding: initial; border-radius: 3px; outline: none; @@ -105,7 +98,7 @@ a { } input[type=submit], button[type=submit] { - font-family: 'Lora', serif; + font-family: 'JetBrains Mono', serif; font-weight: 700; color: #faf9f5; background-color: #111111; @@ -115,7 +108,7 @@ input[type=submit], button[type=submit] { } button[type=button] { - font-family: 'Lora', serif; + font-family: 'JetBrains Mono', serif; font-weight: 700; width: 8em; padding: calc(0.8em - 1px) 1.5em; @@ -127,32 +120,6 @@ button[type=button] { margin: 2em 2em; } -.mainLogo { - font-size: 50px; - margin: 0 0; - display: inline-block; -} - -.mainLogo a { - text-decoration: none; - position: relative; - margin: 3px; -} - -.mainLogo a::after { - content: ""; - position: absolute; - left: 0; - bottom: 0; - height: 4px; - background-color: #111111; - width: 0; - transition: width 0.25s ease; -} - -.mainLogo:hover a::after { - width: 100%; -} /* fixing markdown renderer */ .md h3 { |