hypothetical/resources/assets/less/app.less

58 lines
1.1 KiB
Text
Vendored

@import "bootstrap";
@import "var";
@import "nav";
/*
|
| 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;
}
}
}
}
}