WebFM/src/core/static/css/main.css

81 lines
1.3 KiB
CSS
Raw Normal View History

2021-02-06 04:52:46 +00:00
#bg {
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
z-index: -999;
object-fit: cover;
2021-02-06 04:52:46 +00:00
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: -999;
}
2021-02-06 09:44:11 +00:00
#master-container {
height: 90vh;
2021-02-06 09:44:11 +00:00
overflow-x: hidden;
overflow-y: auto;
}
2021-02-10 03:18:38 +00:00
#video-controls {
position: relative;
2021-02-21 20:05:03 +00:00
bottom: 2.5em;
2021-02-06 09:44:11 +00:00
}
/* CLASSES */
.scroller {
scrollbar-color: #00000084 #ffffff64;
scrollbar-width: thin;
}
2021-02-21 20:05:03 +00:00
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
2021-09-28 22:37:20 +00:00
.card-title-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2021-02-21 20:05:03 +00:00
2021-10-03 19:44:29 +00:00
2021-02-06 09:44:11 +00:00
.volume-control-positioner {
position: absolute;
2021-09-28 22:37:20 +00:00
bottom: 3.5em;
right: 2.5%;
2021-02-06 09:44:11 +00:00
}
2021-02-08 06:30:44 +00:00
.icon-style {
width: 2em;
height: auto;
}
2021-02-06 09:44:11 +00:00
2021-02-10 03:18:38 +00:00
.viewer {
2021-02-10 19:19:39 +00:00
max-width: 55em;
2021-02-06 09:44:11 +00:00
}
2021-02-06 04:52:46 +00:00
/* Other message text colors */
.errorTxt { color: rgb(170, 18, 18); }
.warningTxt { color: rgb(255, 168, 0); }
.successTxt { color: rgb(136, 204, 39); }