Hmm, more round please

This commit is contained in:
Korbs 2025-01-21 17:01:51 -05:00
parent bd8d89e7a9
commit 685ba58e51
Signed by: Korbs
SSH key fingerprint: SHA256:Q0b0KraMldpAO9oKa+w+gcsXsOTykQ4UkAKn0ByGn5U

View file

@ -103,9 +103,10 @@ h3,h4,h5,h6{
height:36px; height:36px;
border:1px solid var(--504945); border:1px solid var(--504945);
background:var(--282828); background:var(--282828);
border-radius:2px; border-radius:6px;
margin-bottom:10px; margin-bottom:10px;
position:relative; position:relative;
transition: 0.32s border;
} }
.searchbox .wrapper{ .searchbox .wrapper{
@ -141,6 +142,7 @@ h3,h4,h5,h6{
.searchbox:focus-within{ .searchbox:focus-within{
border:1px solid var(--928374); border:1px solid var(--928374);
transition: 0.32s border;
} }
.autocomplete{ .autocomplete{
@ -195,9 +197,12 @@ h3,h4,h5,h6{
text-decoration:underline; text-decoration:underline;
} }
.tabs .tab.selected{ .tabs .tab.selected {
border-bottom:2px solid var(--bdae93); border-bottom: none;
} background: var(--bdae93);
color: var(--1d2021);
border-radius: 6px;
}
/* Filters */ /* Filters */
.filters{ .filters{
@ -296,6 +301,31 @@ h3,h4,h5,h6{
font-size:12px; font-size:12px;
} }
.background span {
content: "";
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
backdrop-filter: blur(32px) contrast(0.5) brightness(0.2) saturate(0.42);
z-index: 0;
transition: 0.3s opacity;
}
img[src="/petals_dark.webp"] {
position: fixed !important;
z-index: -1;
top: 0px !important;
left: 0px !important;
width: 100% !important;
height: 100%;
object-fit: cover;
object-position: center;
transform: inherit !important;
transition: 0.15s opacity;
}
#mcaptcha__widget-container { #mcaptcha__widget-container {
width: 300px; width: 300px;
height: 90px; height: 90px;
@ -314,7 +344,7 @@ h3,h4,h5,h6{
} }
.footer-start p, .footer-end p { .footer-start p, .footer-end p {
display: flex; display: flex;
gap: 6px; gap: 12px;
} }
@media screen and (max-width: 930px) { @media screen and (max-width: 930px) {
@ -448,6 +478,7 @@ h3,h4,h5,h6{
/* text-result */ /* text-result */
.web .text-result{ .web .text-result{
margin-bottom:30px; margin-bottom:30px;
position: relative;
} }
.web .description{ .web .description{
@ -469,8 +500,31 @@ h3,h4,h5,h6{
position:relative; position:relative;
} }
.url {
background: var(--3c3836);
border-radius: 3rem;
width: max-content;
padding: 2px 12px 6px 12px;
font-size: 0px;
display: flex;
align-items: center;
}
.part:nth-child(3) {
font-size: 12px;
margin: 2px 0px -2px 0px;
}
.web .text-result .greentext {
position: absolute !important;
top: 5px !important;
right: 0px !important;
font-size: 12px !important;
}
.url span {
display: none !important;
}
.web .url .part{ .web .url .part{
font-size:15px;
text-decoration:none; text-decoration:none;
color:var(--928374); color:var(--928374);
} }
@ -498,7 +552,7 @@ h3,h4,h5,h6{
.web .text-result .title{ .web .text-result .title{
font-size:18px; font-size:18px;
color:var(--bdae93); color:var(--bdae93);
margin-bottom:7px; margin-bottom:6px 0px 12px 0px !important;
} }
.web .text-result a:visited .title{ .web .text-result a:visited .title{
@ -575,8 +629,8 @@ h3,h4,h5,h6{
.web .favicon img, .web .favicon img,
.favicon-dropdown img{ .favicon-dropdown img{
margin:3px 7px 0 0; margin:3px 7px 0 0;
width:16px; width:12px;
height:16px; height:12px;
font-size:12px; font-size:12px;
line-height:16px; line-height:16px;
text-align:center; text-align:center;
@ -635,14 +689,15 @@ h3,h4,h5,h6{
/* Next page */ /* Next page */
.nextpage{ .nextpage{
margin:0 0 30px; margin: 0 0 30px;
text-align:center; text-align: center;
display:block; display: block;
padding:10px; border: 1px solid var(--504945);
border:1px solid var(--504945); border-radius: 3rem;
border-radius:2px; color: var(--bdae93);
text-decoration:none; width: max-content;
color:var(--bdae93); padding: 12px 24px;
text-decoration: none;
} }
.nextpage:hover{ .nextpage:hover{
@ -757,7 +812,7 @@ table tr a:last-child{
.web .spoiler-button{ .web .spoiler-button{
display:block; display:block;
border:1px solid var(--504945); border:1px solid var(--504945);
border-radius:2px; border-radius:6px;
line-height:30px; line-height:30px;
padding:0 7px; padding:0 7px;
text-align:center; text-align:center;
@ -786,7 +841,7 @@ table tr a:last-child{
font-size:15px; font-size:15px;
color:var(--928374); color:var(--928374);
background:var(--282828); background:var(--282828);
border:1px dashed var(--504945); border-radius: 6px;
} }
.web .info-table td{ .web .info-table td{
@ -801,7 +856,7 @@ table tr a:last-child{
} }
.web .info-table tr:nth-child(even){ .web .info-table tr:nth-child(even){
background:var(--1d2021); background:var(--3c3836);
} }
.web .sublinks{ .web .sublinks{