1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

bugfixes, global url params, rds endpoint

This commit is contained in:
NoobishSVK
2024-07-31 16:29:16 +02:00
parent 7c2a71978b
commit e9d389fef0
21 changed files with 376 additions and 251 deletions

View File

@@ -8,8 +8,25 @@
transition: 0.3s ease-in-out background-color;
}
*[class^="panel-"]:not(.no-bg):not(.no-filter) {
backdrop-filter:blur(5px);
*[class^="panel-"]:not(.no-bg):not(.no-filter):not(.w-100) {
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.panel-100.w-100 {
position: relative;
}
.panel-100.w-100::before {
content: '';
backdrop-filter: blur(10px);
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -1;
border-radius: 15px;
}
.panel-10 {
@@ -54,6 +71,9 @@
margin-bottom: 20px;
background-color: transparent;
}
*[class^="panel-"]:not(.no-bg):not(.no-filter) {
backdrop-filter:blur(0px);
}
.flex-phone {
display: flex;
}