81 lines
1.6 KiB
SCSS
Raw Normal View History

2017-04-13 13:06:22 -03:00
/* You can add global styles to this file, and also import other style files */
@import "~bootstrap/scss/bootstrap";
@import "~ngx-toastr/toastr-bs4-alert.scss";
2016-12-29 12:16:02 +01:00
@import './modules/variables';
2016-12-27 13:14:27 +01:00
$dist: './fonts/Montserrat-Regular';
2016-12-29 12:16:02 +01:00
2016-12-27 13:14:27 +01:00
@font-face {
font-family: Montserrat;
font-weight: 400;
2016-12-29 12:16:02 +01:00
src: url('./fonts/Montserrat-Regular.eot?') format('eot'), url('./fonts/Montserrat-Regular.woff') format('woff'), url('./fonts/Montserrat-Regular.ttf') format('truetype'), url('./fonts/Montserrat-Regular.svg#Montserrat') format('svg');
2016-12-27 13:14:27 +01:00
}
@font-face {
font-family: Montserrat;
font-weight: 700;
2016-12-29 12:16:02 +01:00
src: url('./fonts/Montserrat-Bold.eot?') format('eot'), url('./fonts/Montserrat-Bold.woff') format('woff'), url('./fonts/Montserrat-Bold.ttf') format('truetype'), url('./fonts/Montserrat-Bold.svg#Montserrat') format('svg');
2016-12-27 13:14:27 +01:00
}
html,
body {
2016-12-29 12:16:02 +01:00
font-family: Montserrat, sans-serif;
2016-12-27 13:14:27 +01:00
font-size: 16px;
font-weight: $font-weight-normal;
z-index: 10;
}
2016-12-29 12:16:02 +01:00
2016-12-27 19:08:44 +01:00
*,
*::after,
*::before {
box-sizing: border-box;
}
2016-12-27 13:14:27 +01:00
.preloading {
color: $color-brand;
2016-12-27 19:08:44 +01:00
display: block;
2016-12-27 13:14:27 +01:00
font-size: $font-size-xl;
left: 50%;
position: fixed;
top: 50%;
2016-12-27 19:08:44 +01:00
transform: translate(-50%, -50%);
2016-12-27 13:14:27 +01:00
}
2016-12-27 17:05:44 +01:00
select::-ms-expand {
display: none;
}
@media screen and (min-width: 992px) {
.form-input {
max-width: 360px;
width: 360px;
}
}
.form-input {
border-radius: 0;
height: 45px;
padding: 10px;
}
.form-input-small {
max-width: 100px !important;
}
.form-input-medium {
width: 150px !important;
}
.alert {
padding-left: 0;
}
.alert-danger {
background-color: transparent;
border: 0;
color: #FB0D0D;
font-size: 12px;
}