diff --git a/themes/LibreMiami/main.scss b/themes/LibreMiami/main.scss index b1b6c47..765d101 100644 --- a/themes/LibreMiami/main.scss +++ b/themes/LibreMiami/main.scss @@ -1,5 +1,41 @@ +$bg-color: black; +$vice-pink: #F890E7; +$vice-blue: #0BD3D3; +$white: black !default; +$border-color: white; + @import '../MetroMumbleDark/main'; +.toolbar-vertical ~ .chat { + height: calc(98% - 20px) +} + #message-box { - + resize: none; + background-color: $white; + border: 1px solid $vice-pink; + transition: border-color 0.7s ease; + padding: 0.75em; + border-radius: 3px; + line-height: 1em; + height: 1em; + vertical-align: bottom; + font-size: 16px; +} +#message-box:focus-visible { + border-color: $vice-blue; + outline: none; + box-shadow: none; +} +form[data-bind="submit: submitMessageBox"] { + margin-right: 1.6em; +} +.log { + background-color: $bg-color; + border-color: $border-color; + height: calc(100% - 43px); +} +.channel-root-container { + background-color: $bg-color; + border-color: $border-color; } \ No newline at end of file