2021-03-30 15:14:02 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2021-02-26 10:42:34 +01:00
|
|
|
|
2021-03-30 15:14:02 +02:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
2021-05-05 21:51:04 +02:00
|
|
|
overflow-y: scroll;
|
2021-03-30 15:14:02 +02:00
|
|
|
}
|
2021-05-07 08:31:25 +02:00
|
|
|
|
2021-03-30 15:14:02 +02:00
|
|
|
body {
|
|
|
|
height: 100%;
|
2021-08-11 13:34:39 +02:00
|
|
|
font-family: 'Sen', sans-serif;
|
2021-03-30 15:14:02 +02:00
|
|
|
}
|
2021-02-26 10:42:34 +01:00
|
|
|
|
2021-10-01 13:49:18 +02:00
|
|
|
button {
|
|
|
|
font-family: 'Sen', sans-serif;
|
|
|
|
}
|
|
|
|
|
2021-04-19 10:55:15 +02:00
|
|
|
.MuiButton-root {
|
2021-05-18 12:59:48 +02:00
|
|
|
border-radius: 3px;
|
2021-07-16 15:41:54 +02:00
|
|
|
text-transform: none;
|
2021-08-27 13:18:11 +02:00
|
|
|
font-size: 16px;
|
2021-04-19 10:55:15 +02:00
|
|
|
}
|
|
|
|
|
2021-03-30 15:14:02 +02:00
|
|
|
.skeleton {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #e2e8f0;
|
|
|
|
z-index: 9999;
|
|
|
|
box-shadow: none;
|
2021-07-07 11:04:36 +02:00
|
|
|
fill: none;
|
2021-03-30 15:14:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.skeleton::before {
|
|
|
|
background-color: #e2e8f0;
|
2021-04-19 10:55:15 +02:00
|
|
|
content: '';
|
2021-03-30 15:14:02 +02:00
|
|
|
position: absolute;
|
2021-11-12 11:47:19 +01:00
|
|
|
top: 0px;
|
2021-03-30 15:14:02 +02:00
|
|
|
right: 0;
|
|
|
|
content-visibility: hidden;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: 5000;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skeleton::after {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
transform: translateX(-100%);
|
|
|
|
background-image: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgba(255, 255, 255, 0) 0,
|
|
|
|
rgba(255, 255, 255, 0.2) 100%,
|
|
|
|
rgba(255, 255, 255, 0.5) 100%,
|
|
|
|
rgba(255, 255, 255, 0)
|
|
|
|
);
|
|
|
|
animation: shimmer 3s infinite;
|
2021-04-19 10:55:15 +02:00
|
|
|
content: '';
|
2021-03-30 15:14:02 +02:00
|
|
|
z-index: 5001;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes shimmer {
|
|
|
|
100% {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
|
|
|
}
|
2021-02-26 10:42:34 +01:00
|
|
|
|
2021-02-25 10:54:53 +01:00
|
|
|
:root {
|
|
|
|
/* FONT SIZE */
|
|
|
|
--h1-size: 1.25rem;
|
2021-03-30 15:14:02 +02:00
|
|
|
--p-size: 1rem;
|
|
|
|
--caption-size: 0.9rem;
|
2021-02-25 10:54:53 +01:00
|
|
|
|
|
|
|
/* PADDING */
|
|
|
|
--card-padding: 2rem;
|
|
|
|
--card-padding-x: 2rem;
|
|
|
|
--card-padding-y: 2rem;
|
2021-03-30 15:14:02 +02:00
|
|
|
--card-header-padding: 1rem 2rem;
|
|
|
|
--drawer-padding: 1rem 1.5rem;
|
|
|
|
--page-padding: 2rem 0;
|
|
|
|
--list-header-padding: 1rem;
|
2021-02-25 10:54:53 +01:00
|
|
|
|
|
|
|
/* MARGIN */
|
|
|
|
--card-margin-y: 1rem;
|
|
|
|
--card-margin-x: 1rem;
|
|
|
|
|
|
|
|
/* COLORS*/
|
|
|
|
--success: #3bd86e;
|
|
|
|
--danger: #d95e5e;
|
|
|
|
--warning: #d67c3d;
|
2021-03-30 15:14:02 +02:00
|
|
|
--drawer-link-active: #000;
|
|
|
|
--drawer-link-active-bg: #f1f1f1;
|
|
|
|
--drawer-link-inactive: #424242;
|
|
|
|
--primary: #607d8b;
|
|
|
|
|
|
|
|
/* WIDTHS */
|
|
|
|
--drawer-width: 250px;
|
|
|
|
--dropdownMenuWidth: 200px;
|
|
|
|
|
|
|
|
/* BOX SHADOWS */
|
|
|
|
--chip-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
|
|
|
|
|
|
/* BORDERS */
|
|
|
|
--default-border: 1px solid #f1f1f1;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: 16px;
|
2021-02-25 10:54:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2 {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2021-03-30 15:14:02 +02:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.MuiCardHeader-title {
|
|
|
|
font-size: var(--p-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
:root {
|
|
|
|
--drawer-padding: 0.75rem 1.25rem;
|
|
|
|
}
|
|
|
|
}
|