2020-04-23 18:07:39 +02:00
|
|
|
|
@import "vars";
|
|
|
|
|
@import 'fonts';
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-family: "Nunito Sans", sans-serif;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
|
|
color: $defaultTextColor;
|
|
|
|
|
background-color: $backgroundColor;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-30 10:54:14 +02:00
|
|
|
|
@mixin tip {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.tip {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 10000;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
display: block;
|
|
|
|
|
width: max-content;
|
|
|
|
|
height: 30px;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
top: calc(100% + 8px);
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: $defaultTextColor;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity ease-out 100ms, visibility step-end 150ms;
|
|
|
|
|
transition-delay: 0ms;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
text-transform: initial;
|
|
|
|
|
font-weight: initial;
|
2020-09-16 12:38:33 +02:00
|
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
|
top: auto;
|
|
|
|
|
bottom: calc(100% + 8px);
|
|
|
|
|
}
|
2020-07-30 10:54:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover, &:active {
|
|
|
|
|
.tip {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity ease-out 100ms;
|
|
|
|
|
transition-delay: 150ms;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 09:32:22 +02:00
|
|
|
|
body > header {
|
2020-08-30 21:04:59 +02:00
|
|
|
|
z-index: 50;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
$headerHeight: 64px;
|
|
|
|
|
height: $headerHeight;
|
|
|
|
|
line-height: $headerHeight;
|
|
|
|
|
|
|
|
|
|
background-color: $headerBackground;
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
|
|
padding: 0 24px 0 16px;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
color: $defaultTextColor;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: lighten($defaultTextColor, 10%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
width: $headerHeight;
|
|
|
|
|
height: $headerHeight;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-06 11:36:37 +02:00
|
|
|
|
nav {
|
|
|
|
|
ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
|
|
|
|
li {
|
2020-08-30 21:02:37 +02:00
|
|
|
|
position: relative;
|
2020-07-06 11:36:37 +02:00
|
|
|
|
list-style: none;
|
|
|
|
|
|
2020-07-15 11:04:45 +02:00
|
|
|
|
a, button {
|
2020-07-06 12:45:09 +02:00
|
|
|
|
position: relative;
|
2020-07-15 11:04:45 +02:00
|
|
|
|
height: 64px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
|
2020-07-06 11:36:37 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2020-07-15 11:04:45 +02:00
|
|
|
|
|
|
|
|
|
&:hover, &:active {
|
|
|
|
|
&:not(button) {
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.07);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-06 11:36:37 +02:00
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 24px;
|
2020-07-06 12:45:09 +02:00
|
|
|
|
}
|
2020-07-06 11:36:37 +02:00
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-07-15 11:04:45 +02:00
|
|
|
|
button {
|
|
|
|
|
margin: 8px;
|
|
|
|
|
padding: 24px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0;
|
2020-07-06 11:36:37 +02:00
|
|
|
|
}
|
2020-08-30 21:02:37 +02:00
|
|
|
|
|
|
|
|
|
&.auth-user {
|
|
|
|
|
img {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
top: 100%;
|
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
background: $headerBackground;
|
|
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .dropdown {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2020-07-06 11:36:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-07-06 12:03:45 +02:00
|
|
|
|
#menu-button {
|
2020-07-06 11:36:37 +02:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-03 20:29:07 +01:00
|
|
|
|
@media (max-width: $mobileThreshold) {
|
2020-07-06 11:36:37 +02:00
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
|
2020-07-06 12:03:45 +02:00
|
|
|
|
.logo {
|
|
|
|
|
padding: 0 16px 0 8px;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-07-06 11:36:37 +02:00
|
|
|
|
nav {
|
2020-07-06 12:03:45 +02:00
|
|
|
|
#menu-button {
|
2020-07-06 11:36:37 +02:00
|
|
|
|
display: block;
|
2020-07-06 12:03:45 +02:00
|
|
|
|
margin: 0;
|
2020-07-06 11:36:37 +02:00
|
|
|
|
padding: 0 16px;
|
2020-07-06 12:03:45 +02:00
|
|
|
|
line-height: $headerHeight;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-07-06 12:03:45 +02:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border-radius: 0;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
.feather {
|
2020-07-06 12:03:45 +02:00
|
|
|
|
--icon-size: 28px;
|
|
|
|
|
margin: 0 8px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 21:02:37 +02:00
|
|
|
|
> ul {
|
2020-07-06 11:36:37 +02:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: absolute;
|
2020-07-06 12:10:42 +02:00
|
|
|
|
z-index: 10;
|
2020-07-06 11:36:37 +02:00
|
|
|
|
left: 0;
|
|
|
|
|
transform: translateX(-100%);
|
|
|
|
|
transition: transform ease-out 150ms;
|
|
|
|
|
|
|
|
|
|
background-color: $headerBackground;
|
|
|
|
|
|
2020-07-06 12:03:45 +02:00
|
|
|
|
&.open {
|
|
|
|
|
transform: translateX(0%);
|
|
|
|
|
}
|
2020-07-06 12:45:09 +02:00
|
|
|
|
|
2020-07-15 11:04:45 +02:00
|
|
|
|
li {
|
|
|
|
|
a, button {
|
|
|
|
|
.tip {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
text-transform: inherit;
|
|
|
|
|
font-weight: inherit;
|
|
|
|
|
}
|
2020-07-06 12:45:09 +02:00
|
|
|
|
}
|
2020-08-30 21:02:37 +02:00
|
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
|
position: initial;
|
|
|
|
|
display: block;
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
}
|
2020-07-06 12:45:09 +02:00
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-06 12:45:09 +02:00
|
|
|
|
|
2020-11-03 20:29:07 +01:00
|
|
|
|
@media (min-width: $mobileThreshold) {
|
2020-07-06 12:49:28 +02:00
|
|
|
|
nav ul li {
|
2020-07-30 10:54:14 +02:00
|
|
|
|
a, button, .button {
|
|
|
|
|
@include tip;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-15 11:04:45 +02:00
|
|
|
|
&:last-child {
|
2020-07-30 10:54:14 +02:00
|
|
|
|
a, button, .button {
|
2020-07-15 11:04:45 +02:00
|
|
|
|
.tip {
|
|
|
|
|
left: unset;
|
|
|
|
|
right: 4px;
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
text-align: center;
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: $footerBackground;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
flex: 1;
|
2020-11-03 20:29:07 +01:00
|
|
|
|
padding: 8px 0;
|
2020-07-30 10:54:14 +02:00
|
|
|
|
|
|
|
|
|
button, .button {
|
|
|
|
|
@include tip;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
|
|
|
|
& + p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2 {
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3, h4 {
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section > h2, .panel > h2 {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
text-align: center;
|
2020-07-27 16:02:33 +02:00
|
|
|
|
margin-top: 4px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-07-27 16:02:33 +02:00
|
|
|
|
font-size: 24px;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
margin: 0 16px 0 0;
|
|
|
|
|
opacity: 0.1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::after {
|
2020-04-23 18:07:39 +02:00
|
|
|
|
content: "";
|
|
|
|
|
flex: 1;
|
2020-07-27 16:02:33 +02:00
|
|
|
|
margin: 0 16px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
height: 0;
|
|
|
|
|
border-bottom: 1px solid $defaultTextColor;
|
2020-07-27 16:02:33 +02:00
|
|
|
|
opacity: 0.1;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section > hr, .panel > hr {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-bottom: 1px solid $defaultTextColor;
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
|
|
|
|
|
margin: 8px 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: $secondary;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2020-09-02 20:41:58 +02:00
|
|
|
|
color: lighten($secondary, 10%);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feather.feather-external-link {
|
|
|
|
|
--icon-size: 16px;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
margin-top: -3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin: 16px auto;
|
|
|
|
|
|
2020-09-10 16:17:06 +02:00
|
|
|
|
.control {
|
|
|
|
|
position: relative;
|
|
|
|
|
background: $inputBackground;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feather.icon {
|
2020-09-10 15:19:31 +02:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: 8px;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
z-index: 0;
|
|
|
|
|
|
|
|
|
|
--icon-size: 24px;
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 8px;
|
|
|
|
|
top: 20px;
|
|
|
|
|
user-select: none;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
|
|
|
|
|
transition-property: top, font-size;
|
|
|
|
|
transition-duration: 150ms;
|
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
|
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-25 09:39:59 +02:00
|
|
|
|
[disabled] {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
|
|
& ~ label {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 21:02:57 +02:00
|
|
|
|
input, select, textarea, .input-group {
|
2020-09-10 15:19:31 +02:00
|
|
|
|
z-index: 1;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
border: 0;
|
|
|
|
|
color: $defaultTextColor;
|
2020-09-10 15:19:31 +02:00
|
|
|
|
background: transparent;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
2020-06-14 15:18:18 +02:00
|
|
|
|
&:focus, &:not([value=""]), &[type="file"] {
|
2020-04-23 18:07:39 +02:00
|
|
|
|
~ label {
|
|
|
|
|
top: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 21:02:57 +02:00
|
|
|
|
input, select, textarea, .form-display {
|
2020-04-23 18:07:39 +02:00
|
|
|
|
display: block;
|
|
|
|
|
padding: 32px 8px 8px 8px;
|
|
|
|
|
width: 100%;
|
2020-07-27 17:29:52 +02:00
|
|
|
|
height: 60px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
|
|
&::-ms-expand {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& + .feather {
|
|
|
|
|
position: absolute;
|
2020-07-27 16:02:33 +02:00
|
|
|
|
pointer-events: none;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
right: 8px;
|
2020-07-30 11:14:02 +02:00
|
|
|
|
top: 30px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
transition: transform 150ms ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Temporary
|
|
|
|
|
&:focus + .feather {
|
|
|
|
|
transform: rotateX(180deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 21:02:57 +02:00
|
|
|
|
textarea {
|
|
|
|
|
resize: vertical;
|
|
|
|
|
min-height: 100px;
|
2020-09-10 21:02:17 +02:00
|
|
|
|
font-family: inherit;
|
2020-08-30 21:02:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 18:07:39 +02:00
|
|
|
|
input[type=color] {
|
|
|
|
|
height: calc(32px + 8px + 32px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.inline {
|
2020-09-10 16:17:06 +02:00
|
|
|
|
display: flex;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
2020-09-15 16:32:02 +02:00
|
|
|
|
.control {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-grow: 1;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-09-15 16:32:02 +02:00
|
|
|
|
input[type=checkbox] {
|
|
|
|
|
width: min-content;
|
|
|
|
|
height: min-content;
|
|
|
|
|
margin: 8px;
|
2020-09-10 15:19:31 +02:00
|
|
|
|
text-align: left;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
2020-09-15 16:32:02 +02:00
|
|
|
|
& ~ label {
|
|
|
|
|
position: static;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
display: inline;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-group {
|
|
|
|
|
display: flex;
|
2020-09-15 16:32:02 +02:00
|
|
|
|
flex-grow: 1;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
position: relative;
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-25 10:11:05 +02:00
|
|
|
|
|
|
|
|
|
.inline-fields {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
2020-07-27 17:29:52 +02:00
|
|
|
|
align-items: start;
|
2020-04-25 10:11:05 +02:00
|
|
|
|
margin: 16px auto;
|
|
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-25 11:27:12 +02:00
|
|
|
|
> :not(.form-field) {
|
2020-04-25 10:11:05 +02:00
|
|
|
|
padding: 32px 8px 8px 8px;
|
|
|
|
|
}
|
2020-04-25 11:27:12 +02:00
|
|
|
|
|
|
|
|
|
+ {
|
|
|
|
|
.error, .hint {
|
|
|
|
|
margin-top: -16px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-field, .inline-fields + {
|
|
|
|
|
.error, .hint {
|
|
|
|
|
padding: 2px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error {
|
|
|
|
|
color: $error;
|
|
|
|
|
}
|
2020-04-25 10:11:05 +02:00
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button, .button {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: bolder;
|
|
|
|
|
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 16px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-25 09:40:25 +02:00
|
|
|
|
.feather.last {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 18:07:39 +02:00
|
|
|
|
&, &.primary {
|
|
|
|
|
color: $primaryForeground;
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: darken($secondary, 10%);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
&:hover {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: $secondary;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.info {
|
|
|
|
|
background-color: $infoColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.success {
|
|
|
|
|
background-color: $successColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.warning {
|
|
|
|
|
background-color: $warningColor;
|
2020-07-25 18:24:12 +02:00
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: lighten($warningColor, 10%);
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.error, &.danger {
|
|
|
|
|
background-color: $errorColor;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: lighten($errorColor, 10%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.transparent {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $primaryForeground;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.data-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
th {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
border-bottom: 1px solid #39434a;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr:nth-child(even) {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: rgba(255, 255, 255, 0.03);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tr:hover {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: rgba(255, 255, 255, 0.09);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
thead tr:hover {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-30 10:54:29 +02:00
|
|
|
|
.breadcrumb {
|
|
|
|
|
list-style: none;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
|
|
> *:not(:first-child)::before {
|
|
|
|
|
content: '›';
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 18:07:39 +02:00
|
|
|
|
// ---
|
|
|
|
|
// --- Layout helpers
|
|
|
|
|
// ---
|
|
|
|
|
.center {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-03 20:29:07 +01:00
|
|
|
|
@mixin container {
|
|
|
|
|
width: $mobileThreshold;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
padding: 0 16px;
|
2020-11-03 20:29:07 +01:00
|
|
|
|
|
|
|
|
|
@media (min-width: $mobileThreshold) {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: $mobileThreshold) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
@include container;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
2020-07-27 16:02:33 +02:00
|
|
|
|
position: relative;
|
|
|
|
|
margin: 16px 0 48px;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
padding: 8px;
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: $panelBackground;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 16px 8px;
|
|
|
|
|
}
|
2020-07-27 16:02:33 +02:00
|
|
|
|
|
|
|
|
|
> .feather:first-child {
|
|
|
|
|
position: absolute;
|
|
|
|
|
--icon-size: 24px;
|
|
|
|
|
opacity: 0.1;
|
|
|
|
|
top: 8px;
|
|
|
|
|
left: 8px;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sub-panel {
|
2020-05-09 21:47:28 +02:00
|
|
|
|
margin: 32px 0;
|
2020-04-23 18:07:39 +02:00
|
|
|
|
padding: 1px 16px;
|
2020-05-02 12:56:40 +02:00
|
|
|
|
border: 2px solid lighten($panelBackground, 4%);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
border-radius: 5px;
|
2020-05-09 21:47:28 +02:00
|
|
|
|
|
|
|
|
|
form > & {
|
|
|
|
|
margin: 32px -18px;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---
|
|
|
|
|
// --- Feather
|
|
|
|
|
// ---
|
|
|
|
|
.feather {
|
2020-09-15 16:34:21 +02:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
2020-04-23 18:07:39 +02:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: var(--icon-size);
|
|
|
|
|
height: var(--icon-size);
|
2020-09-15 16:34:21 +02:00
|
|
|
|
|
|
|
|
|
--icon-size: 16px;
|
|
|
|
|
font-size: var(--icon-size);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
stroke: currentColor;
|
|
|
|
|
stroke-width: 2;
|
|
|
|
|
stroke-linecap: square;
|
|
|
|
|
stroke-linejoin: miter;
|
|
|
|
|
fill: none;
|
|
|
|
|
vertical-align: middle;
|
2020-11-03 10:38:52 +01:00
|
|
|
|
|
|
|
|
|
h1 > &, h2 > &, h3 > & {
|
|
|
|
|
--icon-size: 24px;
|
|
|
|
|
}
|
2020-04-23 18:07:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---
|
|
|
|
|
// --- Helper classes
|
|
|
|
|
// ---
|
|
|
|
|
.message {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 24px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:not(&-discreet) {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
background-color: rgba(255, 255, 255, 0.33);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
&[data-type=info], &[data-type=question] {
|
|
|
|
|
background-color: $infoColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[data-type=success] {
|
|
|
|
|
background-color: $successColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[data-type=warning] {
|
|
|
|
|
background-color: $warningColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[data-type=error] {
|
|
|
|
|
background-color: $errorColor;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-discreet {
|
2020-05-02 12:56:40 +02:00
|
|
|
|
color: mix($panelBackground, #fff, 35%);
|
2020-04-23 18:07:39 +02:00
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.messages .message:not(:last-child) {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container > .messages:first-child {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copyable-text {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
|
|
|
|
|
background-color: darken($backgroundColor, 2%);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 20px;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-14 17:34:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copyable-text {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
|
|
|
|
|
background-color: darken($backgroundColor, 2%);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
|
--icon-size: 20px;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-15 12:09:33 +02:00
|
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
background: #fff1;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: var(--progress);
|
|
|
|
|
height: 100%;
|
2020-07-12 12:15:22 +02:00
|
|
|
|
transition: width ease-out 150ms;
|
2020-06-15 12:09:33 +02:00
|
|
|
|
|
|
|
|
|
background: $secondary;
|
|
|
|
|
}
|
|
|
|
|
}
|