mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 16:00:09 -04:00
84 lines
1.1 KiB
Plaintext
84 lines
1.1 KiB
Plaintext
/** LESS Plugins **/
|
|
@import 'inc/less-plugins/for';
|
|
|
|
/** Load Main Bootstrap LESS files **/
|
|
@import '~bootstrap/less/bootstrap';
|
|
@import '~material-design-iconic-font/dist/css/material-design-iconic-font.css';
|
|
|
|
@import 'inc/variables';
|
|
@import 'inc/mixins';
|
|
@import 'inc/font';
|
|
@import 'inc/print';
|
|
|
|
@import 'inc/bootstrap-overrides';
|
|
@import 'inc/base';
|
|
@import 'inc/generics';
|
|
@import 'inc/form';
|
|
@import 'inc/button';
|
|
@import 'inc/404';
|
|
@import 'inc/ie-warning';
|
|
@import 'inc/flex';
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #F6F8F9;
|
|
}
|
|
|
|
.signed-out {
|
|
|
|
}
|
|
|
|
hr {
|
|
border-top-width: 2px;
|
|
margin: 25px 0;
|
|
}
|
|
|
|
.tiled {
|
|
padding: 25px;
|
|
}
|
|
|
|
.header {
|
|
margin-top: 25px;
|
|
|
|
img {
|
|
height: 40px;
|
|
}
|
|
}
|
|
|
|
.fixed-width-page {
|
|
width: 500px;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.fixed-width-page {
|
|
width: 80vw;
|
|
}
|
|
}
|
|
|
|
.login-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 20px 0;
|
|
|
|
&:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
img {
|
|
height: 25px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
&:before {
|
|
content: "";
|
|
display: inline-block;
|
|
height: 25px;
|
|
}
|
|
}
|