diff options
author | Cara Salter <cara@devcara.com> | 2022-09-21 21:33:40 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-09-21 21:33:40 -0400 |
commit | f9b99ce66f56995a29709e9bf24750dab9430767 (patch) | |
tree | 3624255932ab500bcfa3043932acd31b23fe86b3 /app/static/scss/style.scss | |
parent | b1ffd5220866dc9479fa284dfb2f0a0e111a6031 (diff) | |
download | nccd-f9b99ce66f56995a29709e9bf24750dab9430767.tar.gz nccd-f9b99ce66f56995a29709e9bf24750dab9430767.zip |
bunch of features
registration, logging out, listing networks, user profiles
Diffstat (limited to 'app/static/scss/style.scss')
-rw-r--r-- | app/static/scss/style.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/static/scss/style.scss b/app/static/scss/style.scss index cc23959..7c8760c 100644 --- a/app/static/scss/style.scss +++ b/app/static/scss/style.scss @@ -36,6 +36,11 @@ button.accent { border-color: $color-accent-bg; } +h1,h2,h3,h4,h5,h6 { + border-bottom: 1px solid; + width:50%; +} + // Navbar .navbar { @@ -56,13 +61,16 @@ button.accent { .flashes { list-style-type: none; display: flex; + justify-content: center; } .message { - width: 30%; + width: 80%; justify-content: center; border: 1px solid $color-fg; background-color: $color-accent-bg; + padding: 0.2rem; + font-size: large; color: black; } |