|
|
@@ -1,4 +1,11 @@ |
|
|
|
@import "variables"; |
|
|
|
@import "~bootstrap/scss/mixins"; |
|
|
|
@import "~bootstrap/scss/bootstrap-grid"; |
|
|
|
@import "~bootstrap/scss/buttons"; |
|
|
|
|
|
|
|
html { |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
body { |
|
|
|
font-family: Inter; |
|
|
@@ -10,4 +17,86 @@ a { |
|
|
|
|
|
|
|
.hide { |
|
|
|
display: none !important; |
|
|
|
} |
|
|
|
|
|
|
|
.col-xs-1 { @extend .col-1; } |
|
|
|
.col-xs-2 { @extend .col-2; } |
|
|
|
.col-xs-3 { @extend .col-3; } |
|
|
|
.col-xs-4 { @extend .col-4; } |
|
|
|
.col-xs-5 { @extend .col-5; } |
|
|
|
.col-xs-6 { @extend .col-6; } |
|
|
|
.col-xs-7 { @extend .col-7; } |
|
|
|
.col-xs-8 { @extend .col-8; } |
|
|
|
.col-xs-9 { @extend .col-9; } |
|
|
|
.col-xs-10 { @extend .col-10; } |
|
|
|
.col-xs-11 { @extend .col-11; } |
|
|
|
.col-xs-12 { @extend .col-12; } |
|
|
|
|
|
|
|
.btn-default { @extend .btn-light; } |
|
|
|
|
|
|
|
.btn-xs { @extend .btn-sm; } |
|
|
|
|
|
|
|
.hidden-xs { |
|
|
|
@extend .d-none; |
|
|
|
@extend .d-sm-block; |
|
|
|
} |
|
|
|
|
|
|
|
.visible-xs { |
|
|
|
@extend .d-block; |
|
|
|
@extend .d-sm-none; |
|
|
|
} |
|
|
|
|
|
|
|
footer { |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.pull-right { |
|
|
|
float: right; |
|
|
|
} |
|
|
|
|
|
|
|
img { |
|
|
|
max-width: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
.hidden { |
|
|
|
@extend .d-none; |
|
|
|
} |
|
|
|
|
|
|
|
.hide-control { |
|
|
|
@extend .d-none; |
|
|
|
} |
|
|
|
|
|
|
|
.text-underline { |
|
|
|
text-decoration: underline; |
|
|
|
} |
|
|
|
|
|
|
|
.text-extra-muted { |
|
|
|
color: #d1d8dd !important; |
|
|
|
} |
|
|
|
|
|
|
|
.no-underline { |
|
|
|
text-decoration: none !important; |
|
|
|
} |
|
|
|
|
|
|
|
.btn { |
|
|
|
border: none; |
|
|
|
border-radius: $border-radius; |
|
|
|
} |
|
|
|
|
|
|
|
.btn-secondary, .btn-default { |
|
|
|
background-color: $control-bg; |
|
|
|
} |
|
|
|
|
|
|
|
.btn-primary { |
|
|
|
background: $brand-gradient; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
h1, h2, h3 { |
|
|
|
color: $text-color; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
|
|
|
|
h1 { |
|
|
|
font-size: 20px; |
|
|
|
} |