diff options
author | Joris | 2025-04-19 12:36:38 +0200 |
---|---|---|
committer | Joris | 2025-04-19 12:38:24 +0200 |
commit | 632eef6424d8dc8d40c2906177892697679e7b85 (patch) | |
tree | 48d9cd60e9e96eab810b5f7bb3c7b1fa79e0438f /frontend/styles/main.sass | |
parent | 063d8ef9eaf874a941f4459e831057dd0a1b7ddd (diff) |
Add ZIG server
Diffstat (limited to 'frontend/styles/main.sass')
-rw-r--r-- | frontend/styles/main.sass | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/frontend/styles/main.sass b/frontend/styles/main.sass new file mode 100644 index 0000000..7fa6963 --- /dev/null +++ b/frontend/styles/main.sass @@ -0,0 +1,71 @@ +@use 'colors' +@use 'form' +@use 'leaflet' + +// libs +@use 'lib/icons' + +// UI +@use 'ui/modal' +@use 'ui/layout' + +// Pages +@use 'pages/login' +@use 'pages/map' +@use 'pages/maps' + +/* General */ + +html + box-sizing: border-box + height: 100% + +*, *:before, *:after + box-sizing: inherit + +body + margin: 0 + font-family: sans-serif + font-size: 1.05rem + height: 100% + display: flex + flex-flow: column + +main + flex-grow: 1 + min-height: 0 + +header + display: flex + justify-content: space-between + width: 100% + background-color: colors.$brown + color: white + line-height: 3rem + + & > a + color: inherit + padding: 0 1rem + +.g-Logout__Button + border: none + background: transparent + font-size: inherit + color: white + cursor: pointer + padding: 0 1rem + height: 100% + + &:hover + text-decoration: underline + +a + color: colors.$blue + text-decoration: none + + &:hover + text-decoration: underline + +p + margin: 0 0 1rem + line-height: 1.4rem |