2018-01-27 19:12:06 +01:00
|
|
|
|
@import "variables.scss";
|
|
|
|
|
|
2021-12-15 23:32:00 +01:00
|
|
|
|
app-root {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#container {
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-03 22:24:49 +01:00
|
|
|
|
.vault {
|
2018-01-31 22:51:59 +01:00
|
|
|
|
height: 100%;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
display: flex;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
2022-05-18 15:56:26 +02:00
|
|
|
|
> .items > div,
|
2021-02-03 22:24:49 +01:00
|
|
|
|
> .details,
|
|
|
|
|
> .logo {
|
2018-01-27 19:12:06 +01:00
|
|
|
|
display: flex;
|
2018-02-01 03:04:04 +01:00
|
|
|
|
flex-direction: column;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
2018-02-01 03:04:04 +01:00
|
|
|
|
.inner-content {
|
|
|
|
|
padding: 10px 15px;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2022-02-14 21:43:05 +01:00
|
|
|
|
> .items {
|
|
|
|
|
order: 2;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
width: 28%;
|
2018-01-28 00:13:01 +01:00
|
|
|
|
min-width: 200px;
|
2018-05-30 15:28:19 +02:00
|
|
|
|
max-width: 350px;
|
|
|
|
|
border-right: 1px solid #000000;
|
2018-01-28 00:13:01 +01:00
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
2018-10-26 05:04:14 +02:00
|
|
|
|
background-color: themed("backgroundColor");
|
2018-01-28 00:13:01 +01:00
|
|
|
|
border-right-color: themed("borderColor");
|
|
|
|
|
}
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
|
|
|
|
.no-items {
|
|
|
|
|
display: flex;
|
2018-01-31 23:58:06 +01:00
|
|
|
|
height: 100%;
|
2018-01-29 22:13:37 +01:00
|
|
|
|
flex-direction: column;
|
2018-01-31 23:58:06 +01:00
|
|
|
|
justify-content: center;
|
2018-01-29 22:13:37 +01:00
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
|
2022-01-21 20:37:28 +01:00
|
|
|
|
.no-items-image {
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
content: url("../images/search-desktop" + themed("svgSuffix"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 18:21:53 +01:00
|
|
|
|
.bwi {
|
2018-01-29 22:13:37 +01:00
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
@include themify($themes) {
|
|
|
|
|
color: themed("disabledIconColor");
|
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-31 18:52:12 +01:00
|
|
|
|
|
|
|
|
|
> .details {
|
|
|
|
|
flex: 1;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
min-width: 0;
|
2022-05-09 14:19:18 +02:00
|
|
|
|
order: 3;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
2018-01-31 18:52:12 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt2");
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-03 22:24:49 +01:00
|
|
|
|
.inner-content {
|
2018-02-01 04:26:00 +01:00
|
|
|
|
min-width: 400px;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
|
|
|
|
.box {
|
|
|
|
|
max-width: 550px;
|
|
|
|
|
margin: 30px auto 0 auto;
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
2018-05-31 04:28:04 +02:00
|
|
|
|
margin-bottom: 30px;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
|
|
|
|
> form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2022-05-05 16:36:46 +02:00
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
button {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> .logo {
|
|
|
|
|
flex: 1;
|
2018-01-28 00:13:01 +01:00
|
|
|
|
min-width: 0;
|
2022-05-09 14:19:18 +02:00
|
|
|
|
order: 3;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
|
2018-01-27 19:12:06 +01:00
|
|
|
|
.content {
|
|
|
|
|
overflow-y: hidden;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inner-content {
|
2021-02-05 18:34:01 +01:00
|
|
|
|
min-width: 320px;
|
|
|
|
|
height: 100%;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
display: flex;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
flex-direction: column;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
2018-05-30 21:21:41 +02:00
|
|
|
|
img {
|
|
|
|
|
width: 284px;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
transition: all 1s ease-in-out;
|
|
|
|
|
|
2018-01-27 19:12:06 +01:00
|
|
|
|
&:hover {
|
|
|
|
|
opacity: 1;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
position: relative;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
overflow: auto;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2018-01-29 22:13:37 +01:00
|
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
|
height: 55px;
|
|
|
|
|
flex: 0 0 auto;
|
2018-05-30 21:21:41 +02:00
|
|
|
|
border-top: 1px solid #000000;
|
2018-01-29 22:13:37 +01:00
|
|
|
|
display: flex;
|
2018-02-01 04:26:00 +01:00
|
|
|
|
align-items: center;
|
2018-01-27 19:12:06 +01:00
|
|
|
|
padding: 0 15px;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
|
2021-02-05 18:34:01 +01:00
|
|
|
|
@include themify($themes) {
|
|
|
|
|
background-color: themed("backgroundColorAlt");
|
2018-06-01 22:58:24 +02:00
|
|
|
|
border-top-color: themed("borderColor");
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|
2021-02-05 18:34:01 +01:00
|
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
|
.right {
|
2018-01-27 20:43:29 +01:00
|
|
|
|
margin-left: auto;
|
2021-02-05 18:34:01 +01:00
|
|
|
|
display: flex;
|
2021-12-20 15:47:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-27 19:12:06 +01:00
|
|
|
|
}
|