2019-10-13 21:33:07 +02:00
|
|
|
@import "mixin";
|
|
|
|
|
2019-07-10 00:52:08 +02:00
|
|
|
$separator_thickness: 5px;
|
|
|
|
$small_device: 650px;
|
|
|
|
$animation_length: .5s;
|
|
|
|
|
2020-06-13 18:47:05 +02:00
|
|
|
html:root {
|
|
|
|
--app-background: #1e1e1e;
|
|
|
|
|
|
|
|
--chat-background: #353535;
|
|
|
|
--channel-tree-background: #353535;
|
|
|
|
--server-log-background: #353535;
|
|
|
|
|
|
|
|
--footer-background: #252525;
|
|
|
|
--footer-text: #666666;
|
|
|
|
|
2020-07-20 19:15:51 +02:00
|
|
|
--channel-chat-seperator: #1e1e1e;
|
|
|
|
--channel-chat-seperator-selected: #707070;
|
2019-07-10 00:52:08 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--server-log-text: #6e6e6e;
|
|
|
|
--server-log-error: #e62222;
|
|
|
|
--server-log-tree-entry: #d8d8d8;
|
2019-07-10 00:52:08 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
--hostbanner-background: #2e2e2e;
|
2019-07-10 00:52:08 +02:00
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
:global {
|
2021-05-05 16:37:20 +02:00
|
|
|
/* Still in use for the global hang in point */
|
2021-03-17 16:02:06 +01:00
|
|
|
.app-container {
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2019-07-10 00:52:08 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
overflow: auto;
|
|
|
|
padding: 0;
|
2019-07-10 00:52:08 +02:00
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
$animation_seperator_length: .1s;
|
|
|
|
.container-seperator {
|
2019-10-13 21:33:07 +02:00
|
|
|
@include transition(all $animation_seperator_length ease-in-out);
|
2021-03-17 16:02:06 +01:00
|
|
|
background: var(--channel-chat-seperator);
|
|
|
|
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
|
|
&.horizontal {
|
|
|
|
height: $separator_thickness;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
cursor: row-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.vertical {
|
|
|
|
width: $separator_thickness;
|
|
|
|
height: 100%;
|
2019-07-10 00:52:08 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.seperator-selected {
|
|
|
|
@include transition(all $animation_seperator_length ease-in-out);
|
|
|
|
|
|
|
|
background-color: var(--channel-chat-seperator-selected);
|
|
|
|
}
|
2019-07-10 00:52:08 +02:00
|
|
|
}
|
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
html, body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2019-07-10 00:52:08 +02:00
|
|
|
|
2021-03-17 16:02:06 +01:00
|
|
|
body {
|
|
|
|
background: var(--app-background)!important;
|
|
|
|
}
|
2019-07-10 00:52:08 +02:00
|
|
|
}
|