diff options
author | curly <curlybryce@protonmail.com> | 2023-02-16 11:48:55 -0700 |
---|---|---|
committer | curly <curlybryce@protonmail.com> | 2023-02-16 11:48:55 -0700 |
commit | 0532d71133f15bf38b8a809694968ba99e249b31 (patch) | |
tree | 2b7d09f331e2494aed54dac27285b5d31294bea9 /main.css | |
parent | 7c115c6475b854ace67ccae4b410a7ef2b2bd1f0 (diff) | |
download | rocket_test_ui-0532d71133f15bf38b8a809694968ba99e249b31.tar.gz rocket_test_ui-0532d71133f15bf38b8a809694968ba99e249b31.tar.bz2 rocket_test_ui-0532d71133f15bf38b8a809694968ba99e249b31.zip |
typescript ftw, styling
Diffstat (limited to 'main.css')
-rw-r--r-- | main.css | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/main.css b/main.css deleted file mode 100644 index 96a2d60..0000000 --- a/main.css +++ /dev/null @@ -1,93 +0,0 @@ -.UI { - background-color: blue; -} -#chatwindow { - display: flex; - flex-flow: column; - overflow-y: scroll; - word-break: break-word; - scroll-snap-align: end; - flex-basis: 100vh; - flex-grow: 1; -} -.message:hover { - background-color: #DDD; -} -.message { - display: flex; - height: 1.6em; - padding-left: 2px; - padding-right: 2px; - align-items: center; -} -.message:hover > :last-child { - display: flex; -} -.messagetext { - white-space: pre-wrap; - flex-grow: 1; -} -.messagedate { - font-size: 12px; -} -.message:not(.deleted) > .messagedate { - color: #666; -} - -.message_buttons { - display: none; -} -.message_buttons > button { - height: 1.6em; - width: 1.6em; - padding: 2px; - margin: 2px; -} - -#navbar { - border-bottom: 2px solid black; - width: 100%; - display: inline-block; - flex-grow: 0; -} -#inputbox { - border-top: 2px solid black; - display: flex; -} -#inputbox > button { - padding: 0 5px 0 5px; -} -#input { - resize: none; - flex-grow: 1; - font-size: 16px; -} - -* { - margin: 0; - padding: 0; - border: 0; -} - -body { - display: flex; - flex-direction: column; - max-height: 100vh; -} - -.date { - text-align: center; - font-weight: bold; - border-bottom: 1px solid black; -} - -.deleted { - color: #999; -} - -.new_messages { - display: none; - text-align: center; - background-color: red; - color: white; -}
\ No newline at end of file |