2016-05-11 19:31:17 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2016-06-14 01:07:00 +00:00
|
|
|
html, body {
|
2016-05-11 02:22:32 +00:00
|
|
|
font-size: #{$base-font-size}px;
|
|
|
|
}
|
|
|
|
|
2019-07-09 16:24:09 +00:00
|
|
|
body, input, textarea {
|
2016-09-14 15:55:53 +00:00
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
|
|
|
}
|
2017-02-22 19:29:35 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 16:24:09 +00:00
|
|
|
body, input, textarea, button {
|
2016-12-14 15:41:50 +00:00
|
|
|
font-family: Montserrat, sans-serif;
|
2016-06-10 02:15:50 +00:00
|
|
|
}
|
|
|
|
|
2016-05-18 17:37:59 +00:00
|
|
|
.root-app, .app {
|
2016-05-11 02:22:32 +00:00
|
|
|
min-height: 100%;
|
|
|
|
height: 100%;
|
2016-06-10 02:15:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2016-09-14 16:46:54 +00:00
|
|
|
@include themify() {
|
2017-02-22 19:29:35 +00:00
|
|
|
@extend %link;
|
2016-06-10 02:15:50 +00:00
|
|
|
}
|
2016-06-14 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input, button {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-07-09 16:24:09 +00:00
|
|
|
input,
|
|
|
|
textarea {
|
2016-06-14 01:07:00 +00:00
|
|
|
padding: #{5 / $base-font-size}rem;
|
2016-12-15 23:43:58 +00:00
|
|
|
border: 1px solid ;
|
|
|
|
border-radius: 2px;
|
2016-07-13 20:13:28 +00:00
|
|
|
padding: #{10 / $base-font-size}rem;
|
2016-09-21 22:52:44 +00:00
|
|
|
@include themify() {
|
2016-09-22 03:39:50 +00:00
|
|
|
color: getThemifyVariable('input-text-color');
|
2020-04-24 00:25:39 +00:00
|
|
|
background-color: getThemifyVariable('input-background-color');
|
2016-09-22 03:39:50 +00:00
|
|
|
border-color: getThemifyVariable('input-border-color');
|
2016-09-21 22:52:44 +00:00
|
|
|
}
|
2016-06-14 01:07:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 09:09:41 +00:00
|
|
|
button[type="submit"],
|
2016-06-14 23:49:37 +00:00
|
|
|
input[type="submit"] {
|
2016-09-13 21:05:42 +00:00
|
|
|
@include themify() {
|
2016-12-19 21:49:37 +00:00
|
|
|
@extend %button;
|
2016-09-13 21:05:42 +00:00
|
|
|
}
|
2016-06-21 03:04:41 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 09:09:41 +00:00
|
|
|
button[type="submit"]:disabled,
|
|
|
|
input[type="submit"]:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
button {
|
|
|
|
@include themify() {
|
|
|
|
@extend %link;
|
|
|
|
}
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:38:27 +00:00
|
|
|
h1 {
|
|
|
|
font-size: #{21 / $base-font-size}em;
|
|
|
|
}
|
|
|
|
|
2016-06-21 03:04:41 +00:00
|
|
|
h2 {
|
|
|
|
font-size: #{21 / $base-font-size}em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-weight: normal;
|
2020-05-28 20:44:00 +00:00
|
|
|
font-size: #{16 / $base-font-size}rem;
|
2016-07-06 15:27:39 +00:00
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2016-07-11 02:52:48 +00:00
|
|
|
h6 {
|
|
|
|
font-weight: normal;
|
2020-04-06 17:02:23 +00:00
|
|
|
font-size: #{12 / $base-font-size}rem;
|
2016-07-11 02:52:48 +00:00
|
|
|
}
|
2016-07-05 20:04:14 +00:00
|
|
|
thead {
|
|
|
|
text-align: left;
|
2016-07-12 03:03:54 +00:00
|
|
|
}
|
2017-02-22 19:29:35 +00:00
|
|
|
th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2020-04-22 20:52:47 +00:00
|
|
|
|
|
|
|
a:focus,
|
|
|
|
button:focus,
|
|
|
|
input:focus,
|
|
|
|
textarea:focus {
|
|
|
|
outline: none;
|
|
|
|
box-shadow: 0 0 0 1px $outline-color;
|
|
|
|
}
|
2020-05-05 23:03:58 +00:00
|
|
|
|
|
|
|
// screen reader only class
|
|
|
|
// from https://www.scottohara.me/blog/2017/04/14/inclusively-hidden.html#hiding-content-visually
|
|
|
|
.sr-only:not(:focus):not(:active) {
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
clip-path: inset(50%);
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 1px;
|
|
|
|
}
|