diff options
Diffstat (limited to 'styles')
| -rw-r--r-- | styles/base.css | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/styles/base.css b/styles/base.css new file mode 100644 index 0000000..338b19f --- /dev/null +++ b/styles/base.css @@ -0,0 +1,57 @@ +@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); + +html, body { + display: block; + padding: 0; + margin: 0; + min-width:100vw; + min-height:100vh; +} + +* { + font-family: "Nunito", sans-serif; + font-optical-sizing: auto; + font-weight: 400; + font-style: normal; + + box-sizing: border-box; +} + + + +nav { + display: flex; + background-color: #9f3050; + + height: 64px; +} + +#logo { + height: 100%; +} + + + +content { + display:flex; + width: 100vw; + min-height: calc(100vh - 128px); + padding: 10px 10px 10px 10px; + + background-color: #ffecdc; +} + + + +footer { + display: flex; + + width:100vw; + height:64px; + bottom:0; + + padding: 10px; + + background-color: #777; + color: #eee; +}
\ No newline at end of file |