2015-07-08 03:34:58 -04:00
|
|
|
@import "bootstrap";
|
|
|
|
@import "var";
|
2015-12-01 01:07:03 -05:00
|
|
|
@import "auth";
|
|
|
|
|
|
|
|
@import "elements/**";
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
| Main Styles
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2015-07-16 22:30:53 -04:00
|
|
|
min-width: 300px;
|
2015-07-08 03:34:58 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 1.5;
|
2015-07-16 22:30:53 -04:00
|
|
|
font-weight: 100;
|
2015-07-08 03:34:58 -04:00
|
|
|
color: @c_text;
|
|
|
|
}
|
|
|
|
|
2015-09-11 17:33:33 -04:00
|
|
|
* {
|
|
|
|
outline: none !important;
|
2015-10-10 01:07:55 -04:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2015-09-11 17:33:33 -04:00
|
|
|
}
|
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
body.index {
|
|
|
|
.container {
|
|
|
|
.content {
|
|
|
|
text-align: center;
|
2015-07-16 22:30:53 -04:00
|
|
|
|
|
|
|
.title {
|
|
|
|
position: relative;
|
|
|
|
top: ~"calc(50vh - 131px)";
|
|
|
|
font-size: 96px;
|
|
|
|
|
|
|
|
@media (max-width: 1225px) {
|
|
|
|
top: ~"calc(50vh - 119px)";
|
|
|
|
font-size: 82px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1025px) {
|
|
|
|
top: ~"calc(50vh - 97px)";
|
|
|
|
font-size: 58px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: (@screen-sm - 1)) {
|
|
|
|
top: ~"calc(50vh - 83px)";
|
|
|
|
font-size: 42px;
|
|
|
|
}
|
|
|
|
}
|
2015-07-08 03:34:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|