hypothetical/resources/assets/less/app.less

65 lines
1.1 KiB
Text
Raw Normal View History

2015-12-12 02:21:43 -05:00
// Core
@import "bootstrap";
@import "var";
2015-12-12 02:21:43 -05:00
// Base
@import "auth";
2015-12-12 02:21:43 -05:00
// Supplementary
@import "elements/**";
/*
|
| Main Styles
|
*/
html, body {
width: 100%;
height: 100%;
}
body {
min-width: 300px;
margin: 0;
padding: 0;
line-height: 1.5;
font-weight: 100;
color: @c_text;
}
* {
outline: none !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body.index {
.container {
.content {
text-align: center;
.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;
}
}
}
}
}