ActorRolesPanelComponent added, other fixes

This commit is contained in:
2024-10-12 01:51:39 +02:00
Unverified
parent 55ff257f56
commit d50373f4ba
20 changed files with 238 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
/* DEFAULT */
.mt-default {
margin-top: 1rem !important;
}
.gx-default {
--bs-gutter-x: 1rem !important;
}
/* OTHERS */
.mt-over-panel-menu {
margin-top: 3rem !important;
}

View File

@@ -25,6 +25,8 @@ body, html {
font-family: "PT Sans";
}
/* CLASSES */
.container-grid {
@@ -53,6 +55,8 @@ body, html {
.top-3 {
top: 1rem !important;
}
@@ -69,22 +73,16 @@ body, html {
margin-top: 9rem !important;
}
.panel-header {
background-color: rgba(0, 0, 0, 0.8);
}
.panel-regular {
background-color: rgba(0, 0, 0, 0.6);
background-color: rgba(0, 0, 0, 0.6) !important;
}
.panel-yellow {
background-color: rgba(255, 184, 58, 0.6);
background-color: rgba(255, 184, 58, 0.6) !important;
}
.panel {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(25px);
}

View File

@@ -0,0 +1,68 @@
/* MAIN */
.panel {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(25px);
background-color: rgba(0, 0, 0, 0.6);
border-radius: 0.5rem;
padding: 1.5rem;
}
/* HEADER */
.panel-header {
padding: 0 1rem !important;
background-color: rgba(0, 0, 0, 0.8);
}
/* MENU */
.panel-menu {
gap: 1rem;
padding: 1rem 1.5rem !important;
background-color: rgba(0, 0, 0, 0.8);
}
.panel-menu > li > a {
--bs-nav-pills-link-active-bg: transparent;
--bs-nav-link-hover-color: white;
--bs-nav-link-color: #a6a6a6;
--bs-nav-pills-border-radius: 1.25rem;
padding: 0.25rem 0.5rem;
border-style: solid;
border-width: 2px;
border-color: transparent;
}
.panel-menu > li > a.active {
--bs-nav-link-color: white;
border-color: white;
}
/* BACKGROUNDS */
.panel-background-gold {
background-color: rgba(255, 184, 58, 0.6);
}
/* OTHERS */
.panel-text-title {
font-size: 1.5rem;
font-weight: bold;
}