e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
77 lines
993 B
SCSS
77 lines
993 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
font-size: #{$base-font-size}px;
|
|
}
|
|
|
|
body, input {
|
|
@include themify() {
|
|
color: getThemifyVariable('primary-text-color');
|
|
}
|
|
}
|
|
|
|
body, input, button {
|
|
font-family: Montserrat, sans-serif;
|
|
}
|
|
|
|
.root-app, .app {
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
@include themify() {
|
|
@extend %link;
|
|
}
|
|
}
|
|
|
|
input, button {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
input {
|
|
padding: #{5 / $base-font-size}rem;
|
|
border: 1px solid ;
|
|
border-radius: 2px;
|
|
padding: #{10 / $base-font-size}rem;
|
|
@include themify() {
|
|
color: getThemifyVariable('input-text-color');
|
|
border-color: getThemifyVariable('input-border-color');
|
|
}
|
|
}
|
|
|
|
input[type="submit"] {
|
|
@include themify() {
|
|
@extend %button;
|
|
}
|
|
}
|
|
|
|
button {
|
|
@include themify() {
|
|
@extend %link;
|
|
}
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
|
|
h2 {
|
|
font-size: #{21 / $base-font-size}em;
|
|
}
|
|
|
|
h3 {
|
|
font-weight: normal;
|
|
}
|
|
h4 {
|
|
font-weight: normal;
|
|
}
|
|
h6 {
|
|
font-weight: normal;
|
|
}
|
|
thead {
|
|
text-align: left;
|
|
}
|
|
th {
|
|
text-align: left;
|
|
}
|