2022-09-05 16:29:51 +02:00
|
|
|
@import url("Font_F25_Bank_Printer.css");
|
2020-10-31 18:57:29 +01:00
|
|
|
|
2024-04-27 20:10:58 +02:00
|
|
|
:root {
|
|
|
|
--FooterPadding: 8px;
|
|
|
|
}
|
|
|
|
|
2022-09-06 20:44:58 +02:00
|
|
|
A {
|
|
|
|
Color: #17C3EA;
|
2020-10-31 12:56:53 +01:00
|
|
|
}
|
2022-09-06 20:44:58 +02:00
|
|
|
A:Active {
|
|
|
|
Color: #0B69BC;
|
|
|
|
}
|
|
|
|
A:Hover {
|
|
|
|
Background: #101060;
|
|
|
|
Color: #E9FFEE;
|
2020-10-31 12:56:53 +01:00
|
|
|
}
|
|
|
|
|
2022-09-06 20:44:58 +02:00
|
|
|
Body {
|
2022-09-05 16:29:51 +02:00
|
|
|
background-image: url("https://octospacc.gitlab.io/Web-ThirdParty-Unknown/Assets/Media/Backgrounds/0.gif");
|
2020-10-30 17:18:03 +01:00
|
|
|
background-size: cover;
|
|
|
|
margin: 0;
|
2020-10-31 12:56:53 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
color: #F0F0FF;
|
2020-10-30 17:18:03 +01:00
|
|
|
}
|
|
|
|
|
2022-10-29 16:40:35 +02:00
|
|
|
.NoSelect, .Footer {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
User-Select: none;
|
|
|
|
}
|
|
|
|
|
2021-09-22 22:58:20 +02:00
|
|
|
.InlineDiv > * {
|
|
|
|
display: inline-block;
|
2021-09-23 21:45:52 +02:00
|
|
|
margin: 32px;
|
2021-09-22 22:58:20 +02:00
|
|
|
}
|
|
|
|
|
2022-04-23 00:19:31 +02:00
|
|
|
#ConfettiCanvas {
|
|
|
|
Position: Relative;
|
|
|
|
Top: 0;
|
|
|
|
Left: 0;
|
|
|
|
Width: 100%;
|
|
|
|
Height: 100%;
|
|
|
|
Z-Index: 2;
|
|
|
|
}
|
|
|
|
|
2021-09-22 22:58:20 +02:00
|
|
|
.Content {
|
2023-01-18 21:41:34 +01:00
|
|
|
background-color: rgba(0,0,0,0.85);
|
2020-10-31 12:56:53 +01:00
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
z-index: 1;
|
|
|
|
overflow-x: hidden;
|
|
|
|
padding-top: 5%;
|
|
|
|
padding-bottom: 5%;
|
2020-10-30 17:18:03 +01:00
|
|
|
}
|
|
|
|
|
2024-03-15 14:36:31 +01:00
|
|
|
#Links > Div,
|
|
|
|
.BackgroundedBox {
|
2022-09-06 20:44:58 +02:00
|
|
|
Max-Width: Fit-Content;
|
2022-09-07 20:25:23 +02:00
|
|
|
Margin: Auto;
|
2022-09-06 20:44:58 +02:00
|
|
|
Padding: 16px;
|
2023-01-18 21:41:34 +01:00
|
|
|
Background-Color: RGBA(16,16,16,0.85);
|
2022-09-06 20:44:58 +02:00
|
|
|
}
|
|
|
|
|
2024-03-15 14:36:31 +01:00
|
|
|
.BackgroundedBox > li {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
2021-09-23 21:45:52 +02:00
|
|
|
.TopBar {
|
2021-09-23 22:08:01 +02:00
|
|
|
position: absolute !important;
|
2021-09-23 21:45:52 +02:00
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2022-09-06 20:44:58 +02:00
|
|
|
padding: 8px;
|
2021-09-23 22:23:14 +02:00
|
|
|
/* width: 100%; */
|
2021-09-23 21:45:52 +02:00
|
|
|
white-space: nowrap;
|
2021-09-23 22:08:01 +02:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2021-09-23 21:45:52 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 22:58:20 +02:00
|
|
|
.Footer {
|
2022-10-29 16:40:35 +02:00
|
|
|
Position: Fixed;
|
|
|
|
Display: Flex;
|
|
|
|
Flex-Direction: Row;
|
|
|
|
Justify-Content: Space-Between;
|
|
|
|
Bottom: 0px;
|
|
|
|
Width: 100vw;
|
2024-04-27 20:10:58 +02:00
|
|
|
Padding: var(--FooterPadding);
|
2022-10-29 16:40:35 +02:00
|
|
|
Text-Align: Center;
|
2024-02-01 01:03:56 +01:00
|
|
|
Overflow-X: Auto;
|
2022-10-29 16:40:35 +02:00
|
|
|
Overflow-Y: Hidden;
|
|
|
|
White-Space: NoWrap;
|
|
|
|
Z-Index: 1;
|
2023-01-18 21:41:34 +01:00
|
|
|
/* CSS-only scroll shadow effect | Credits to Bartek, <https://stackoverflow.com/questions/44793453/how-do-i-add-a-top-and-bottom-shadow-while-scrolling-but-only-when-needed#comment115950584_44794221> */
|
|
|
|
/*
|
|
|
|
background:
|
|
|
|
linear-gradient(90deg, white 30%, rgba(255, 255, 255, 0)),
|
|
|
|
linear-gradient(90deg, rgba(255, 255, 255, 0), white 70%) 0 100%,
|
|
|
|
radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, 0.2), white),
|
|
|
|
radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), white) 0 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top left, top right, top left, top right;
|
|
|
|
background-size: 40px 100%, 40px 100%, 20px 100%, 20px 100%;
|
|
|
|
background-attachment: local, local, scroll, scroll;
|
|
|
|
*/
|
|
|
|
Background-Color: RGBA(36, 36, 36, 0.85);
|
2024-01-27 20:35:56 +01:00
|
|
|
Font-Size: Larger;
|
2022-09-06 20:44:58 +02:00
|
|
|
}
|
2024-04-27 20:10:58 +02:00
|
|
|
.Footer > .FooterRight { Margin-Right: calc(var(--FooterPadding) * 2); }
|
2022-09-06 20:44:58 +02:00
|
|
|
|
2023-04-21 16:13:27 +02:00
|
|
|
#OcttAgeView { Padding: 16px; }
|