a.stupid.cat/css/discord.css

1060 lines
20 KiB
CSS

/* =====================================================================
* 3. PRESENCE CARD (unified Discord-style profile pill)
* Lifted verbatim from main.css §13 so the card is self-contained.
* ===================================================================== */
.presence-card {
--dc-accent: 245, 194, 231;
position: fixed;
top: 1rem;
left: 1rem;
z-index: 6;
width: max-content;
max-width: 280px;
background: var(--surface-0);
border: 1px solid var(--surface-1);
border-radius: 16px;
box-shadow: 0 8px 26px -12px rgba(17, 17, 27, 0.7);
overflow: hidden;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.presence-card[hidden] {
display: none;
}
.presence-card.has-accent {
border-color: rgba(var(--dc-accent), 0.5);
box-shadow: 0 8px 26px -12px rgba(var(--dc-accent), 0.6);
}
/* ---- header (always visible) ---- */
.pc-head {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.5rem 0.7rem;
}
.pc-avatar {
position: relative;
width: 40px;
height: 40px;
flex-shrink: 0;
}
.pc-av-img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
display: block;
/* solid fill behind the avatar — many PFPs (incl. Clove's) are partly
transparent, and Discord shows a solid backdrop rather than the banner. */
background: var(--crust);
}
/* avatar decoration / frame overlay (Discord cosmetic) */
.pc-av-deco {
position: absolute;
top: 50%;
left: 50%;
width: 54px;
height: 54px;
transform: translate(-50%, -50%);
pointer-events: none;
}
.pc-av-deco[hidden] {
display: none;
}
.pc-status {
position: absolute;
right: -1px;
bottom: -1px;
width: 12px;
height: 12px;
border-radius: 50%;
border: 2.5px solid var(--surface-0);
background: var(--overlay-0);
}
.presence-card[data-status="online"] .pc-status {
background: var(--green);
}
.presence-card[data-status="idle"] .pc-status {
background: var(--yellow);
}
.presence-card[data-status="dnd"] .pc-status {
background: var(--red);
}
.presence-card[data-status="offline"] .pc-status {
background: var(--overlay-0);
}
.pc-id {
display: flex;
flex-direction: column;
gap: 0.05rem;
min-width: 0;
}
.pc-name {
font-size: 0.92rem;
font-weight: 700;
color: rgb(var(--accent-rgb));
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: color 0.5s ease;
}
.pc-user {
font-size: 0.7rem;
color: var(--subtext-0);
white-space: nowrap;
}
.pc-user:empty {
display: none;
}
/* status word (Online / Idle / Do Not Disturb / Offline) */
.pc-status-text {
font-size: 0.7rem;
font-weight: 600;
white-space: nowrap;
color: var(--overlay-1);
}
.pc-status-text:empty {
display: none;
}
.pc-status-text::before {
content: "";
display: inline-block;
width: 7px;
height: 7px;
border-radius: 50%;
margin-right: 0.3rem;
vertical-align: baseline;
background: var(--overlay-0);
}
.presence-card[data-status="online"] .pc-status-text {
color: var(--green);
}
.presence-card[data-status="online"] .pc-status-text::before {
background: var(--green);
}
.presence-card[data-status="idle"] .pc-status-text {
color: var(--yellow);
}
.presence-card[data-status="idle"] .pc-status-text::before {
background: var(--yellow);
}
.presence-card[data-status="dnd"] .pc-status-text {
color: var(--red);
}
.presence-card[data-status="dnd"] .pc-status-text::before {
background: var(--red);
}
.presence-card[data-status="offline"] .pc-status-text {
color: var(--overlay-1);
}
.presence-card[data-status="offline"] .pc-status-text::before {
background: var(--overlay-0);
}
/* ---- expandable sections ---- */
.pc-sections {
display: flex;
flex-direction: column;
gap: 0.4rem;
padding: 0 0.6rem 0.6rem;
transition: opacity 0.2s ease;
}
.presence-card:not(.has-sections) .pc-sections {
display: none;
}
.pc-row {
display: flex;
align-items: center;
gap: 0.55rem;
padding: 0.4rem 0.5rem;
border-radius: 10px;
background: var(--mantle);
border: 1px solid transparent;
color: var(--text);
text-decoration: none;
transition: border-color 0.15s ease, transform 0.15s ease;
}
a.pc-row:hover,
.pc-row--stack:hover {
border-color: rgba(var(--dc-accent), 0.55);
transform: translateX(2px);
}
.pc-row-text {
display: flex;
flex-direction: column;
gap: 0.04rem;
min-width: 0;
}
.pc-row-kind {
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--subtext-0);
}
.pc-row-title {
font-size: 0.8rem;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.pc-row-sub {
font-size: 0.7rem;
color: var(--subtext-0);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.pc-row-title:empty,
.pc-row-sub:empty {
display: none;
}
.pc-row-elapsed {
font-size: 0.62rem;
color: var(--subtext-0);
margin-top: 0.1rem;
}
.pc-row-elapsed:empty {
display: none;
}
/* artwork / icons */
.pc-art,
.pc-row-ic-img {
width: 38px;
height: 38px;
border-radius: 7px;
object-fit: cover;
flex-shrink: 0;
}
.pc-row-ic.pc-dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex-shrink: 0;
margin: 0 0.5rem;
background: rgb(var(--accent-rgb));
}
.pc-dev .pc-row-ic.pc-dot {
background: var(--blue);
border-radius: 2px;
}
.pc-game .pc-row-ic.pc-dot {
background: var(--green);
}
.pc-stream .pc-row-ic.pc-dot {
background: var(--mauve);
}
/* custom status */
.pc-custom {
position: relative;
align-self: flex-start;
background: var(--surface-1);
border: none;
padding: 0.5rem 0.7rem;
gap: 0.4rem;
align-items: flex-start;
border-radius: 13px;
border-top-left-radius: 4px;
margin-top: 0.3rem;
}
/* Discord-style thought-bubble tail */
.pc-custom::before,
.pc-custom::after {
content: "";
position: absolute;
background: var(--surface-1);
border-radius: 50%;
pointer-events: none;
}
.pc-custom::before {
width: 9px;
height: 9px;
top: -5px;
left: 12px;
}
.pc-custom::after {
width: 5px;
height: 5px;
top: -11px;
left: 9px;
}
.pc-custom:hover {
transform: none;
border-color: transparent;
}
.pc-emoji {
width: 18px;
height: 18px;
flex-shrink: 0;
margin-top: 0.05rem;
}
.pc-custom-text {
font-size: 0.74rem;
color: var(--subtext-0);
max-width: 230px;
white-space: normal;
overflow-wrap: anywhere;
line-height: 1.35;
}
/* spotify progress */
.pc-spotify .pc-row-title {
color: var(--green);
}
.pc-progress {
display: flex;
flex-direction: column;
gap: 0.15rem;
margin-top: 0.25rem;
width: 180px;
}
.pc-bar {
height: 4px;
border-radius: 999px;
background: var(--surface-1);
overflow: hidden;
}
.pc-fill {
display: block;
height: 100%;
width: 0;
border-radius: 999px;
background: rgb(var(--dc-accent));
}
.pc-times {
display: flex;
justify-content: space-between;
font-size: 0.58rem;
color: var(--subtext-0);
font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
.presence-card {
max-width: calc(100vw - 2rem);
}
.api-stage .presence-card {
max-width: 100%;
}
}
/* ---- extended Lanyard fields ---- */
.pc-name-row {
display: flex;
align-items: center;
gap: 0.35rem;
min-width: 0;
}
.pc-name-row .pc-name {
min-width: 0;
}
/* gradient display name (display_name_styles) */
.pc-name.is-gradient {
-webkit-background-clip: text;
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}
/* server tag chip (primary_guild) */
.pc-tag {
display: inline-flex;
align-items: center;
gap: 0.2rem;
flex-shrink: 0;
padding: 0.05rem 0.35rem;
border-radius: 6px;
background: var(--surface-2);
font-size: 0.58rem;
font-weight: 700;
letter-spacing: 0.03em;
color: var(--text);
}
.pc-tag[hidden] {
display: none;
}
.pc-tag-badge {
width: 14px;
height: 14px;
display: block;
}
/* username + active-platform indicators */
.pc-sub-row {
display: flex;
align-items: center;
gap: 0.35rem;
}
.pc-platforms {
display: inline-flex;
align-items: center;
gap: 0.2rem;
color: var(--subtext-0);
}
.pc-plat {
width: 12px;
height: 12px;
display: inline-flex;
}
.pc-plat svg {
width: 12px;
height: 12px;
display: block;
}
/* KV meta line (location, etc.) */
.pc-meta {
display: flex;
align-items: center;
gap: 0.25rem;
margin-top: 0.1rem;
font-size: 0.66rem;
color: var(--subtext-0);
}
.pc-meta[hidden] {
display: none;
}
.pc-pin {
font-size: 0.7rem;
line-height: 1;
}
/* stacked rows (activity rows that carry buttons) */
.pc-row--stack {
flex-direction: column;
align-items: stretch;
gap: 0.4rem;
}
.pc-row-link {
display: flex;
align-items: center;
gap: 0.55rem;
min-width: 0;
color: var(--text);
text-decoration: none;
}
/* activity icon with small corner badge (assets.small_image) */
.pc-ic-wrap {
position: relative;
flex-shrink: 0;
width: 38px;
height: 38px;
}
.pc-ic-wrap .pc-row-ic-img {
width: 38px;
height: 38px;
}
.pc-ic-badge {
position: absolute;
right: -3px;
bottom: -3px;
width: 16px;
height: 16px;
border-radius: 50%;
border: 2px solid var(--mantle);
object-fit: cover;
}
/* activity buttons (labels from presence) */
.pc-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.pc-btn {
font-size: 0.66rem;
padding: 0.22rem 0.55rem;
border-radius: 6px;
background: var(--surface-1);
color: var(--text);
text-decoration: none;
border: 1px solid transparent;
transition: border-color 0.15s ease, background 0.15s ease;
}
.pc-btn:hover {
border-color: rgb(var(--dc-accent));
background: var(--surface-2);
}
/* profile badges */
.pc-badges {
display: inline-flex;
align-items: center;
gap: 0.2rem;
flex-wrap: wrap;
margin-top: 0.15rem;
}
.pc-badges:empty {
display: none;
}
.pc-badge {
width: 16px;
height: 16px;
display: block;
}
.pc-badge-link {
display: inline-flex;
line-height: 0;
}
/* wishlist star + panel */
.pc-star {
margin-left: auto;
align-self: flex-start;
background: none;
border: none;
cursor: url('../assets/cursor/pointer_0.png'), pointer;
font-size: 0.95rem;
line-height: 1;
color: var(--subtext-0);
padding: 0.1rem 0.15rem;
transition: color 0.15s ease, transform 0.15s ease;
}
.pc-star:hover {
color: rgb(var(--accent-rgb));
transform: scale(1.12);
}
.pc-star.on {
color: var(--yellow);
}
.pc-wishlist {
display: none;
}
.presence-card.show-wishlist .pc-wishlist {
display: block;
border-top: 1px solid var(--surface-1);
margin: 0 0.6rem;
padding: 0.6rem 0 0.7rem;
}
.pc-wishlist-title {
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--subtext-0);
margin-bottom: 0.45rem;
}
.pc-wl-item {
display: flex;
align-items: center;
gap: 0.45rem;
padding: 0.25rem 0.4rem;
border-radius: 8px;
text-decoration: none;
color: var(--text);
}
a.pc-wl-item:hover {
background: var(--mantle);
}
.pc-wl-ic {
width: 22px;
height: 22px;
border-radius: 5px;
object-fit: cover;
}
.pc-wl-text {
display: flex;
flex-direction: column;
line-height: 1.2;
min-width: 0;
}
.pc-wl-name {
font-size: 0.8rem;
}
.pc-wl-type {
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 0.04em;
color: var(--subtext-0);
}
.pc-wl-price {
margin-left: auto;
padding-left: 0.5rem;
font-size: 0.72rem;
color: var(--subtext-1);
white-space: nowrap;
}
.pc-wl-item.is-owned {
opacity: 0.5;
}
.pc-wl-empty {
font-size: 0.78rem;
color: var(--subtext-0);
margin: 0;
}
/* Discord profile gradient (Catppuccin is the fallback) */
.presence-card.has-profile-grad {
background: linear-gradient(180deg, rgb(var(--pc-grad-1-rgb)) 0%, rgb(var(--pc-grad-2-rgb)) 100%);
}
.presence-card.has-profile-grad:not(.has-accent) {
border-color: rgba(var(--pc-grad-1-rgb), 0.6);
}
.presence-card.has-profile-grad .pc-row {
background: rgba(17, 17, 27, 0.55);
}
/* =====================================================================
* 4. EXTRAS (banner, bio, connected accounts — used on the /discord page)
* ===================================================================== */
.pc-banner {
display: block;
width: 100%;
height: 96px;
object-fit: cover;
margin: 0;
}
.pc-banner[hidden] {
display: none;
}
/* solid/accent banner fallback when there's no Nitro banner image */
.presence-card.has-banner-color::before {
content: "";
display: block;
height: 64px;
background: var(--pc-banner-color, var(--surface-1));
}
/* when a banner is present, lift the avatar up over it */
.presence-card.has-banner .pc-head,
.presence-card.has-banner-color .pc-head {
margin-top: -22px;
}
.presence-card.has-banner .pc-avatar,
.presence-card.has-banner-color .pc-avatar {
width: 56px;
height: 56px;
}
.presence-card.has-banner .pc-av-img,
.presence-card.has-banner-color .pc-av-img {
width: 56px;
height: 56px;
border: 3px solid var(--surface-0);
}
.presence-card.has-banner .pc-av-deco,
.presence-card.has-banner-color .pc-av-deco {
width: 72px;
height: 72px;
}
.pc-bio {
margin: 0 0.7rem 0.5rem;
padding: 0.5rem 0.6rem;
border-radius: 10px;
background: var(--mantle);
font-size: 0.74rem;
line-height: 1.4;
color: var(--subtext-1);
white-space: pre-wrap;
overflow-wrap: anywhere;
}
.pc-bio[hidden] {
display: none;
}
.pc-connections {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
margin: 0 0.7rem 0.6rem;
}
.pc-connections[hidden] {
display: none;
}
.pc-conn {
display: inline-flex;
align-items: center;
gap: 0.3rem;
padding: 0.2rem 0.5rem;
border-radius: 999px;
background: var(--surface-1);
border: 1px solid transparent;
color: var(--text);
font-size: 0.66rem;
text-decoration: none;
transition: border-color 0.15s ease, background 0.15s ease;
}
a.pc-conn:hover {
border-color: rgb(var(--accent-rgb));
background: var(--surface-2);
}
.pc-conn-type {
text-transform: uppercase;
letter-spacing: 0.04em;
font-size: 0.56rem;
color: var(--subtext-0);
}
.pc-conn-check {
color: var(--green);
font-weight: 700;
}
/* =====================================================================
* 5. /discord PAGE STAGE (centered, slightly wider card)
* ===================================================================== */
html:has(.presence-stage),
body:has(.presence-stage) {
height: auto;
min-height: 100dvh;
overflow-y: auto;
}
body:has(.presence-stage) {
padding: 0;
}
.presence-stage {
min-height: 100dvh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1.5rem;
}
.presence-intro {
text-align: center;
margin: 0 0 1.25rem;
}
.presence-intro h1 {
margin: 0;
font-size: 1.8rem;
color: rgb(var(--accent-rgb));
}
.presence-intro p {
margin: 0.3rem 0 0;
font-size: 0.9rem;
color: var(--subtext-0);
}
/* pronouns chip (shown on the card sub-row) */
.pc-pronouns {
padding: 0.05rem 0.4rem;
border-radius: 6px;
background: var(--surface-2);
font-size: 0.6rem;
font-weight: 600;
color: var(--subtext-1);
white-space: nowrap;
}
.pc-pronouns[hidden] {
display: none;
}
/* =====================================================================
* 6. /discord PAGE — big "fills the page" presence card
* ===================================================================== */
.presence-stage .presence-card {
position: static;
margin: 0;
width: 100%;
max-width: 680px;
border-radius: 20px;
}
/* tall Nitro banner */
.presence-stage .pc-banner {
height: 220px;
}
.presence-stage .presence-card.has-banner-color::before {
height: 150px;
}
/* header — roomier, big overlapping avatar */
.presence-stage .pc-head {
gap: 1rem;
padding: 0.9rem 1.4rem;
align-items: flex-end;
}
/* keep the identity column bottom-aligned to the avatar's visible lower
half, whether or not a custom-status bubble is present */
.presence-stage .presence-card.has-custom .pc-head {
align-items: flex-end;
}
/* only the avatar pokes up into the banner; the name/identity block stays
in the solid area below it */
.presence-stage .presence-card.has-banner .pc-head,
.presence-stage .presence-card.has-banner-color .pc-head {
margin-top: 0;
}
.presence-stage .presence-card.has-banner .pc-avatar,
.presence-stage .presence-card.has-banner-color .pc-avatar {
margin-top: -60px;
}
.presence-stage .pc-avatar,
.presence-stage .presence-card.has-banner .pc-avatar,
.presence-stage .presence-card.has-banner-color .pc-avatar {
width: 120px;
height: 120px;
}
.presence-stage .pc-av-img,
.presence-stage .presence-card.has-banner .pc-av-img,
.presence-stage .presence-card.has-banner-color .pc-av-img {
width: 120px;
height: 120px;
/* solid dark plate + ring so the banner sits clearly BEHIND the avatar
(the PFP itself is partly transparent) */
background: var(--crust);
border: 6px solid var(--crust);
}
.presence-stage .pc-av-deco,
.presence-stage .presence-card.has-banner .pc-av-deco,
.presence-stage .presence-card.has-banner-color .pc-av-deco {
width: 152px;
height: 152px;
}
.presence-stage .pc-status {
width: 24px;
height: 24px;
border-width: 5px;
}
/* identity block — bigger type */
.presence-stage .pc-name {
font-size: 1.5rem;
}
.presence-stage .pc-user {
font-size: 0.9rem;
}
.presence-stage .pc-badges {
margin-top: 0.3rem;
}
.presence-stage .pc-badge {
width: 22px;
height: 22px;
}
/* bio + connections — wider, padded to match */
.presence-stage .pc-bio {
margin: 0 1.4rem 0.8rem;
padding: 0.7rem 0.9rem;
font-size: 0.88rem;
}
.presence-stage .pc-connections {
margin: 0 1.4rem 0.9rem;
gap: 0.5rem;
}
.presence-stage .pc-conn {
font-size: 0.74rem;
padding: 0.3rem 0.65rem;
}
/* activity rows — larger artwork + text */
.presence-stage .pc-sections {
gap: 0.6rem;
padding: 0 1.4rem 1.1rem;
}
.presence-stage .pc-row {
padding: 0.7rem 0.8rem;
border-radius: 14px;
}
.presence-stage .pc-art,
.presence-stage .pc-row-ic-img,
.presence-stage .pc-ic-wrap,
.presence-stage .pc-ic-wrap .pc-row-ic-img {
width: 56px;
height: 56px;
}
.presence-stage .pc-row-title {
font-size: 0.95rem;
max-width: none;
}
.presence-stage .pc-row-sub {
font-size: 0.82rem;
max-width: none;
}
.presence-stage .pc-progress {
width: 100%;
}
.presence-stage .pc-custom-text {
font-size: 0.86rem;
max-width: none;
}
/* wishlist + star scale up a touch */
.presence-stage .pc-star {
font-size: 1.2rem;
}
@media (max-width: 720px) {
.presence-stage .presence-card {
max-width: 100%;
}
}
@media (max-width: 480px) {
.presence-stage .pc-banner {
height: 150px;
}
.presence-stage .pc-avatar,
.presence-stage .presence-card.has-banner .pc-avatar,
.presence-stage .presence-card.has-banner-color .pc-avatar {
width: 92px;
height: 92px;
}
.presence-stage .pc-av-img,
.presence-stage .presence-card.has-banner .pc-av-img,
.presence-stage .presence-card.has-banner-color .pc-av-img {
width: 92px;
height: 92px;
}
.presence-stage .presence-card.has-banner .pc-head,
.presence-stage .presence-card.has-banner-color .pc-head {
margin-top: 0;
}
.presence-stage .presence-card.has-banner .pc-avatar,
.presence-stage .presence-card.has-banner-color .pc-avatar {
margin-top: -46px;
}
.presence-stage .pc-name {
font-size: 1.25rem;
}
}
/* =====================================================================
* 7. INLINE EMBED (compact presence card sitting in normal page flow,
* e.g. between the other links on the /socials page). Unlike
* .presence-stage this does NOT take over the viewport — the card
* flows in place, centered, so surrounding content stays put.
* ===================================================================== */
.presence-embed {
display: flex;
justify-content: center;
margin: 1.25rem 0 0.5rem;
}
.presence-embed .presence-card {
position: static;
top: auto;
left: auto;
margin: 0;
}