adds .local/share/millennium and easyeffects

This commit is contained in:
2026-08-06 18:23:36 +02:00
parent f92fb90275
commit 8dc466cbac
2581 changed files with 339035 additions and 0 deletions
@@ -0,0 +1,38 @@
.protondb_rank_rows {
margin: 10px 0;
font-size: 14px;
}
.protondb_rank_row {
display: flex;
align-items: center;
margin: 5px 0;
}
.protondb_rank_label {
margin-right: 10px;
color: #8f98a0;
}
.protondb_icon {
display: inline-block;
transform-origin: 0 0;
transform: scale(0.8);
margin-right: 5px;
vertical-align: middle;
}
.protondb_rank_value {
font-weight: bold;
color: #fff;
padding: 2px 8px;
border-radius: 3px;
}
/* Rank colors */
.platinum { background-color: #b4c7dc; }
.gold { background-color: #cfb53b; }
.silver { background-color: #c0c0c0; }
.bronze { background-color: #cd7f32; }
.borked { background-color: #ff0000; }
.pending { background-color: #666666; }
@@ -0,0 +1,64 @@
.deck-status-icon {
position: absolute;
top: -3px;
right: -3px; /* Position the icon at the top-right corner */
z-index: 14;
width: 37px !important;
}
.deck-status-icon[data-ds-deck-tier="unsupported"],
.deck-status-icon[data-ds-deck-tier="unknown"] {
filter: contrast(10);
}
.deck-status-icon[data-ds-deck-tier="verified"] {
filter: contrast(1.25);
}
.deck-status-icon[data-ds-deck-tier="playable"] {
filter: contrast(1.8);
}
.vertical-line {
background-color: transparent;
width: 4px;
height: 100%;
position: absolute;
z-index: 11;
left: 0;
top: 0;
bottom: 0;
}
/* Specific styles for list view */
.search_result_row .vertical-line {
height: 100%;
top: 0;
bottom: 0;
}
/* Specific styles for grid view */
.store_capsule .vertical-line {
height: 100%;
top: 0;
bottom: 0;
}
.deck-status-icon.on-list {
position: absolute;
width: 24px !important;
height: 24px;
top: 10.5px;
left: -16px;
}
.deck-status-icon.on-tab-list {
position: initial;
width: 22px !important;
height: 22px;
display: inline;
vertical-align: bottom;
}
.gameslistitems_PerfectRibbon_1uKlf {
left: 0px !important;
}
@@ -0,0 +1,92 @@
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Poppins:wght@200;400&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
body {
padding: 1rem;
background-color: #20232b;
color: white;
font-family: Poppins, sans-serif;
min-width: fit-content;
max-width: 300px;
max-height: 400px;
aspect-ratio: 2.5 / 3;
}
.solidet-text {
font-family: Orbitron, sans-serif;
font-size: 1rem;
}
.color-picker-wrapper input {
visibility: hidden;
}
.custom-color-picker {
height: 32px;
width: 32px;
outline: none;
border: none;
border-radius: 50%;
background-color: currentcolor;
box-shadow: inset 0 0 0 2px #43434a, inset 0 0 0 4px black;
cursor: pointer;
}
#resetColorsButton {
padding: 0.5rem 1.2rem;
border-radius: 2rem;
border: none;
background-color: #17191f;
color: white;
transition: all 0.2s ease-in-out;
cursor: pointer;
}
#resetColorsButton:hover {
background-color: #0b0c0f;
}
.color-picker-wrapper {
display: flex;
column-gap: 12px;
align-items: center;
}
.color-picker-list {
margin-top: 16px;
display: grid;
gap: 0.5rem;
grid-template-columns: 1fr 1fr 1fr 1fr;
/* justify-content: center; */
align-items: center;
flex-wrap: wrap;
column-gap: 24px;
}
.color-picker-footer {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 24px;
}
.solidet-linktree {
text-decoration: none;
color: inherit;
cursor: pointer;
}
.version-text {
top: 0.7rem;
right: 0.7rem;
position: absolute;
font-size: 0.8rem;
margin-top: 8px;
color: #858592;
float: right;
}