sanic/static/style.css

135 lines
2.1 KiB
CSS
Raw Normal View History

2023-12-29 16:55:51 +01:00
/* #################### */
2023-12-30 15:02:13 +01:00
/* #### structure ##### */
2023-12-29 16:55:51 +01:00
/* #################### */
2023-12-28 04:55:06 +01:00
html, body { margin: 0; height: 100%; }
main {
height: 100%;
display: grid;
grid-auto-columns: 1fr;
grid-template-columns: 1fr 2fr;
grid-template-rows: 150px 1fr 1fr;
gap: 0 0;
grid-template-areas: "nav nav" "queue queue" "browser result";
}
#queue {
grid-area: queue;
overflow: auto;
}
#nav {
grid-area: nav;
display: flex;
}
#result {
grid-area: result;
overflow: auto;
}
#browser {
grid-area: browser;
}
table {
width: 100%;
}
2023-12-30 15:02:13 +01:00
#control-admin {
display: flex;
flex-direction: column;
}
#sanic-logo {
max-width: 80%;
max-height: 80%;
}
.spaced {
display: flex;
justify-content: space-between;
}
2023-12-29 16:55:51 +01:00
/* #################### */
/* ###### debug ####### */
/* #################### */
2023-12-28 04:55:06 +01:00
div {
border: 1px solid blue;
}
2023-12-29 16:55:51 +01:00
/* #################### */
/* ### pretty stuff ### */
/* #################### */
/* Disable arrows in input */
/* Chrome, Safari, Edge, Opera */
#control-xfade::-webkit-outer-spin-button,
#control-xfade::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
#control-xfade[type=number] {
-moz-appearance: textfield;
}
2023-12-30 15:02:13 +01:00
#control-xfade {
width: 2em;
}
#control-previous,
#control-play-pause,
#control-stop,
#control-next {
width: 2.5em;
height: 2.5em;
text-align: center;
}
/*
#control-track {
transform: translateX(100%);
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
animation: scroll-left 20s linear infinite;
-moz-animation: scroll-left 2s linear infinite;
-webkit-animation: scroll-left 2s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(100%);
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
}
100% {
transform: translateX(-100%);
-moz-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
}
}
@-moz-keyframes scroll-left {
0% {
-moz-transform: translateX(100%);
}
100% {
-moz-transform: translateX(-100%);
}
}
@-webkit-keyframes scroll-left {
0% {
-webkit-transform: translateX(100%);
}
100% {
-webkit-transform: translateX(-100%);
}
}
*/