2020-01-15 20:42:02 +05:00
|
|
|
@import "./theme.css";
|
|
|
|
|
2020-01-04 19:14:12 +01:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2020-01-15 20:42:02 +05:00
|
|
|
color: var(--text-color-primary);
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.panelColumn {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-01-04 19:14:12 +01:00
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
h3,
|
|
|
|
legend,
|
|
|
|
.control-label {
|
2020-01-20 19:59:00 -03:00
|
|
|
margin-top: 0.333rem;
|
2020-01-25 14:52:03 -03:00
|
|
|
margin-bottom: 0.333rem;
|
2020-01-20 19:59:00 -03:00
|
|
|
font-size: 0.75rem;
|
2020-01-17 02:54:21 +02:00
|
|
|
color: var(--text-color-primary);
|
2020-01-25 14:52:03 -03:00
|
|
|
font-weight: bold;
|
|
|
|
display: block;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
.control-label input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3:first-child,
|
|
|
|
legend:first-child,
|
|
|
|
.control-label:first-child {
|
2020-01-15 20:42:02 +05:00
|
|
|
margin-top: 0;
|
2020-01-09 01:06:36 +04:00
|
|
|
}
|
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
legend {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.buttonList {
|
2020-01-06 00:10:35 +01:00
|
|
|
flex-wrap: wrap;
|
2020-01-04 19:14:12 +01:00
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
label {
|
2020-01-20 19:59:00 -03:00
|
|
|
margin-right: 0.25rem;
|
|
|
|
font-size: 0.75rem;
|
2020-01-25 14:52:03 -03:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="radio"] {
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
2020-01-05 01:08:27 +05:00
|
|
|
}
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
2020-01-25 14:52:03 -03:00
|
|
|
|
|
|
|
fieldset {
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 0.333rem;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.divider {
|
|
|
|
width: 1px;
|
2020-01-17 02:54:21 +02:00
|
|
|
background-color: #e9ecef;
|
2020-01-15 20:42:02 +05:00
|
|
|
margin: 1px;
|
2020-01-05 20:37:24 -03:00
|
|
|
}
|
|
|
|
|
2020-02-01 02:57:57 +00:00
|
|
|
.buttonList label:focus-within,
|
2020-01-15 20:42:02 +05:00
|
|
|
input:focus {
|
|
|
|
outline: transparent;
|
2020-01-17 02:54:21 +02:00
|
|
|
box-shadow: 0 0 0 2px #a5d8ff;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
button,
|
|
|
|
.buttonList label {
|
2020-01-17 02:54:21 +02:00
|
|
|
background-color: #e9ecef;
|
|
|
|
border: 0;
|
2020-01-04 19:14:12 +01:00
|
|
|
border-radius: 4px;
|
2020-01-20 19:59:00 -03:00
|
|
|
margin: 0.125rem 0;
|
|
|
|
padding: 0.25rem;
|
2020-02-09 09:07:34 -05:00
|
|
|
white-space: nowrap;
|
2020-01-05 01:08:27 +05:00
|
|
|
|
2020-01-21 15:50:25 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
2020-01-05 01:08:27 +05:00
|
|
|
&:focus {
|
2020-01-17 02:54:21 +02:00
|
|
|
box-shadow: 0 0 0 2px #a5d8ff;
|
2020-01-05 01:08:27 +05:00
|
|
|
}
|
2020-01-04 19:14:12 +01:00
|
|
|
|
|
|
|
&:hover {
|
2020-01-17 02:54:21 +02:00
|
|
|
background-color: #ced4da;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
&:active {
|
2020-02-09 17:09:21 +01:00
|
|
|
background-color: #adb5bd;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2020-01-05 13:05:55 -08:00
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
.active,
|
|
|
|
.buttonList label.active {
|
2020-01-17 02:54:21 +02:00
|
|
|
background-color: #ced4da;
|
2020-01-15 19:57:58 +01:00
|
|
|
&:hover {
|
2020-01-17 02:54:21 +02:00
|
|
|
background-color: #ced4da;
|
2020-01-15 19:57:58 +01:00
|
|
|
}
|
2020-02-09 17:09:21 +01:00
|
|
|
&:active {
|
|
|
|
background-color: #adb5bd;
|
|
|
|
}
|
2020-01-15 19:57:58 +01:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-menu {
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-menu_top {
|
|
|
|
grid-template-columns: 1fr auto 1fr;
|
|
|
|
align-items: flex-start;
|
|
|
|
cursor: default;
|
|
|
|
pointer-events: none !important;
|
|
|
|
}
|
2020-01-05 13:05:55 -08:00
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-menu_top > * {
|
|
|
|
pointer-events: all;
|
2020-01-05 13:05:55 -08:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-menu_top > *:first-child {
|
|
|
|
justify-self: flex-start;
|
2020-01-05 13:05:55 -08:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-menu_top > *:last-child {
|
|
|
|
justify-self: flex-end;
|
2020-01-05 13:05:55 -08:00
|
|
|
}
|
2020-01-15 20:42:02 +05:00
|
|
|
|
2020-02-15 21:03:32 +01:00
|
|
|
.App-menu_bottom {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
grid-template-columns: 1fr auto 1fr;
|
|
|
|
align-items: flex-start;
|
|
|
|
cursor: default;
|
|
|
|
pointer-events: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-menu_bottom > * {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-menu_bottom > *:first-child {
|
|
|
|
justify-self: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-menu_bottom > *:last-child {
|
|
|
|
justify-self: flex-end;
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-menu_left {
|
|
|
|
grid-template-rows: 1fr auto 1fr;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-menu_right {
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
height: 100%;
|
2020-01-05 22:26:00 +00:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.App-right-menu {
|
2020-01-20 19:59:00 -03:00
|
|
|
width: 13.75rem;
|
2020-01-05 22:26:00 +00:00
|
|
|
}
|
2020-01-21 15:50:25 +01:00
|
|
|
|
|
|
|
.ErrorSplash {
|
|
|
|
min-height: 100vh;
|
|
|
|
padding: 20px 0;
|
|
|
|
overflow: auto;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.ErrorSplash-messageContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
padding: 40px;
|
|
|
|
background-color: #fff5f5;
|
|
|
|
border: 3px solid #c92a2a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ErrorSplash-paragraph {
|
|
|
|
margin: 15px 0;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bigger,
|
|
|
|
.bigger button {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
.smaller,
|
|
|
|
.smaller button {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ErrorSplash-details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px 0;
|
|
|
|
font-family: "Cascadia";
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-22 16:25:04 +02:00
|
|
|
|
2020-01-30 16:39:37 -03:00
|
|
|
.dropdown-select {
|
2020-01-22 16:25:04 +02:00
|
|
|
position: absolute;
|
2020-01-30 16:39:37 -03:00
|
|
|
margin-bottom: 0.5em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
height: 1.5rem;
|
2020-01-22 16:25:04 +02:00
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-01-26 22:04:56 +02:00
|
|
|
padding: 0 1.5rem 0 0.5rem;
|
2020-01-24 19:10:44 +01:00
|
|
|
background-color: #e9ecef;
|
|
|
|
border-radius: var(--space-factor);
|
2020-01-26 22:04:56 +02:00
|
|
|
border: 1px solid #ced4da;
|
|
|
|
font-size: 0.8rem;
|
2020-01-24 19:10:44 +01:00
|
|
|
outline: none;
|
|
|
|
appearance: none;
|
|
|
|
background-image: url("https://free-use.s3-us-west-2.amazonaws.com/up-sort.svg");
|
|
|
|
background-repeat: no-repeat;
|
2020-01-26 22:04:56 +02:00
|
|
|
background-position: right 0.7rem top 50%, 0 0;
|
2020-01-24 19:10:44 +01:00
|
|
|
background-size: 0.65em auto, 100%;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
box-shadow: 0 0 0 2px #a5d8ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #ced4da;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: #ced4da;
|
2020-01-22 16:25:04 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-25 14:52:03 -03:00
|
|
|
|
2020-01-30 16:39:37 -03:00
|
|
|
.language-select {
|
|
|
|
@extend .dropdown-select;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-25 14:52:03 -03:00
|
|
|
.visually-hidden {
|
|
|
|
position: absolute !important;
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
white-space: nowrap; /* added line */
|
|
|
|
}
|
2020-02-01 16:52:10 +00:00
|
|
|
|
2020-02-09 09:07:34 -05:00
|
|
|
.zIndexButton {
|
|
|
|
margin: 0 5px;
|
2020-02-09 17:09:21 +01:00
|
|
|
padding: 5px;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
}
|
2020-02-09 09:07:34 -05:00
|
|
|
}
|
|
|
|
|
2020-02-01 16:52:10 +00:00
|
|
|
.scroll-back-to-content {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
bottom: 20px;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|