44 lines
844 B
SCSS
44 lines
844 B
SCSS
|
@import "vendor/_bootstrap";
|
||
|
|
||
|
/*!
|
||
|
* Q3Stats CSS | Copyright 2017 by Tomek Wójcik | MIT License
|
||
|
* https://git.bthlabs.pl/q3stats
|
||
|
*/
|
||
|
|
||
|
@import "_mixins";
|
||
|
|
||
|
@import "components/ChartComponent.scss";
|
||
|
@import "components/LoaderComponent.scss";
|
||
|
|
||
|
@import "views/AboutModalView.scss";
|
||
|
@import "views/ErrorView.scss";
|
||
|
@import "views/NavigationBarView.scss";
|
||
|
@import "views/PlayerGameView.scss";
|
||
|
|
||
|
table td > img {
|
||
|
border-radius: 3px;
|
||
|
background: #eeeeee;
|
||
|
height: 24px;
|
||
|
}
|
||
|
|
||
|
.q3stats-app-window {
|
||
|
align-content: stretch;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.q3stats-content-view {
|
||
|
flex: 2 100%;
|
||
|
order: 2;
|
||
|
overflow-y: scroll;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.q3stats-footer {
|
||
|
background-color: $navbar-default-bg;
|
||
|
border-top: 1px solid $navbar-default-border;
|
||
|
order: 3;
|
||
|
padding-top: ($line-height-computed / 2);
|
||
|
}
|