diff options
author | metamuffin <metamuffin@disroot.org> | 2023-07-26 16:27:16 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-07-26 16:27:16 +0200 |
commit | f35043b395adf9ffa06b71000dfba6f560d44cb7 (patch) | |
tree | f95ecf9785b86da750064510038b5159f36ce2c5 /frontend/style.sass | |
parent | 0ae2d031aa2bf13f9e0ba90b945e79cd614cfd7e (diff) | |
download | fastbangs-f35043b395adf9ffa06b71000dfba6f560d44cb7.tar fastbangs-f35043b395adf9ffa06b71000dfba6f560d44cb7.tar.bz2 fastbangs-f35043b395adf9ffa06b71000dfba6f560d44cb7.tar.zst |
add a bunch of ui for the search page and style
Diffstat (limited to 'frontend/style.sass')
-rw-r--r-- | frontend/style.sass | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/frontend/style.sass b/frontend/style.sass new file mode 100644 index 0000000..e61799a --- /dev/null +++ b/frontend/style.sass @@ -0,0 +1,59 @@ +$ac-dark: rgb(52, 35, 50) +$ac-light: rgb(255, 116, 227) + +body + background-color: $ac-dark + margin: 0px + +p, h1, h2, h3, h4, h5, h6, input, button + color: white + +section.info + margin: 5em + +.status + background-color: black + padding: 1em + margin: 0px + text-align: center + box-shadow: 0px 0px 10px 0px black + + &.level-error + color: #ff0000 + + &.level-success + color: #00ff00 + + +section.search + width: 100vw + height: 50vh + display: flex; + flex-direction: column + place-content: center; + align-items: center; + + font-size: large + font-weight: 500 + + input, button + border-radius: 0.5em + padding: 0.5em + + input + width: 25em + border: 0.15em solid $ac-light + background-color: rgba(0, 0, 0, 0.3) + outline: none + + &:focus + transition: 0.1s ease-out + background-color: rgba(0, 0, 0, 0.5) + border-color: lightgray !important + + button + margin-left: 1em + background-color: $ac-light + backdrop-filter: blur(5px) + border: 0 + cursor: pointer |