This commit is contained in:
x
2025-11-03 21:58:48 +01:00
parent 995caadcd3
commit cab73c45e7
7 changed files with 93 additions and 60 deletions

View File

@@ -260,10 +260,6 @@ html[theme="amoled"] table.table a {
text-decoration: underline;
}
html[theme="amoled"] .badge.badge-dark {
box-shadow: 1px 1px 1px var(--gray);
}
html[theme="paper"] {
--accent: #000;
--bg: #fff;
@@ -791,9 +787,10 @@ html[theme="f0ck95"] #next {
color: white !important;
}
html[theme="f0ck95"] .navbar-brand:hover {
/* removing in favor of new appearance */
/* html[theme="f0ck95"] .navbar-brand:hover {
background: #80808059;
}
} */
html[theme="f0ck95"] span.f0ck::after {
content: "95";
@@ -1047,7 +1044,7 @@ html[theme="f0ck95d"] span#favs {
border: inset 1px gray;
background: rgba(255, 255, 255, .04), rgba(255, 255, 255, 0);
background-image: linear-gradient(to bottom, var(--nav-link-background-linear-gradient));
box-shadow: var(--nav-link-box-shadow);
}
html[theme="f0ck95d"] .nav-link,
@@ -1086,17 +1083,10 @@ html[theme="f0ck95d"] #next {
color: white;
}
html[theme="f0ck95d"] .navbar-brand:hover {
/* same */
/* html[theme="f0ck95d"] .navbar-brand:hover {
background: transparent;
}
html[theme="f0ck95d"] span.f0ck::after {
content: "95";
font-size: 14px;
font-family: vcr;
vertical-align: super;
color: teal;
}
} */
html[theme="f0ck95d"] .pagination>span {
border: 1px dashed var(--accent) !important;

View File

@@ -30,7 +30,6 @@
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.v0ck_overlay > svg {
position: absolute;

View File

@@ -188,4 +188,71 @@ video {
to {
opacity: 1;
}
}
.navbar.navbar-expand-lg, .navigation-links, .navbar-brand , .pagination-wrapper{
background: transparent;
}
.navbar {
border-bottom: none;
padding: 5px;
}
.navbar-brand {
background: black;
border-radius: 4cm;
}
.image-brand {
width: 4cm;
align-self: center;
border-radius: 4cm;
}
.pagewrapper {
padding: 5px;
}
.location {
padding-left: 5px;
}
#main {
padding: 25px;
}
.container {
padding-top: 1vh;
}
#next, #prev {
visibility: hidden;
}
@media (max-width: 1056px) {
.navigation-links {
display: grid;
grid-row: 1;
grid-column: 2;
}
.navbar-brand {
grid-row: 1;
grid-column: 1;
}
#navbarSupportedContent {
grid-row: 1;
grid-column: 3;
}
.navbar {
grid-template-columns: 0fr 1fr auto !important;
grid-template-rows: 1fr;
}
.navbar-nav {
display: grid !important;
grid-template-rows: auto;
grid-template-columns: auto auto 1fr;
grid-gap: 0.25em;
}
}