2020-01-15 20:42:02 +05:00
|
|
|
@import "./theme.css";
|
|
|
|
|
2020-01-04 19:14:12 +01:00
|
|
|
/* http://www.eaglefonts.com/fg-virgil-ttf-131249.htm */
|
|
|
|
@font-face {
|
|
|
|
font-family: "Virgil";
|
2020-01-16 13:32:40 -07:00
|
|
|
src: url("https://uploads.codesandbox.io/uploads/user/f7fdc300-3c43-44c1-9a59-4338a82a9954/xhjR-FG_Virgil.ttf");
|
2020-01-04 19:14:12 +01:00
|
|
|
font-display: swap;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-15 20:42:02 +05:00
|
|
|
h5 {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #333;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
h5:first-child {
|
|
|
|
margin-top: 0;
|
2020-01-09 01:06:36 +04:00
|
|
|
}
|
|
|
|
|
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-15 20:42:02 +05:00
|
|
|
button {
|
|
|
|
margin-right: 4px;
|
2020-01-05 01:08:27 +05:00
|
|
|
}
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
.divider {
|
|
|
|
width: 1px;
|
|
|
|
background-color: #ddd;
|
|
|
|
margin: 1px;
|
2020-01-05 20:37:24 -03:00
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
input:focus {
|
|
|
|
outline: transparent;
|
2020-01-16 20:16:08 +02:00
|
|
|
box-shadow: 0 0 0 2px #4682b4;
|
2020-01-04 19:14:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
background-color: #ddd;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin: 2px 0;
|
|
|
|
padding: 5px;
|
2020-01-05 01:08:27 +05:00
|
|
|
outline: transparent;
|
|
|
|
|
|
|
|
&:focus {
|
2020-01-16 20:16:08 +02:00
|
|
|
box-shadow: 0 0 0 2px #4682b4;
|
2020-01-05 01:08:27 +05:00
|
|
|
}
|
2020-01-04 19:14:12 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #e7e5e5;
|
|
|
|
border-color: #d6d4d4;
|
|
|
|
}
|
|
|
|
|
2020-01-15 20:42:02 +05:00
|
|
|
&:active {
|
2020-01-04 19:14:12 +01:00
|
|
|
background-color: #bdbebc;
|
|
|
|
border-color: #bdbebc;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
}
|
2020-01-05 13:05:55 -08:00
|
|
|
|
2020-01-15 19:57:58 +01:00
|
|
|
.active {
|
|
|
|
background-color: #bdbebc;
|
|
|
|
&:hover {
|
|
|
|
background-color: #bdbebc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
.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 {
|
|
|
|
width: 220px;
|
2020-01-05 22:26:00 +00:00
|
|
|
}
|