updated gui
This commit is contained in:
597
app/styles.css
597
app/styles.css
@@ -10,6 +10,7 @@
|
||||
font-family: system-ui, -apple-system, "Segoe UI", Roboto, var(--font-script-main);
|
||||
background: #0f0f14;
|
||||
color: #f4f4f5;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.topbar {
|
||||
padding: 12px 16px;
|
||||
@@ -19,11 +20,39 @@
|
||||
gap: 10px;
|
||||
border-bottom: 1px solid #27272a;
|
||||
background: #18181b;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.topbar-home-button {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: #f4f4f5;
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.01em;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.topbar-home-button:hover {
|
||||
color: #fbbf24;
|
||||
}
|
||||
.topbar-home-button[aria-pressed="true"] {
|
||||
color: #fbbf24;
|
||||
}
|
||||
.topbar-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
justify-content: flex-start;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
.topbar-actions::-webkit-scrollbar {
|
||||
height: 6px;
|
||||
}
|
||||
.topbar-dropdown {
|
||||
position: relative;
|
||||
@@ -138,19 +167,19 @@
|
||||
color: #86efac;
|
||||
}
|
||||
.connection-gate-status[data-tone="pending"] {
|
||||
color: #fcd34d;
|
||||
color: #fde68a;
|
||||
}
|
||||
.connection-gate-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 18px;
|
||||
gap: 12px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
.connection-gate-actions button {
|
||||
padding: 9px 14px;
|
||||
border-radius: 8px;
|
||||
appearance: none;
|
||||
border: 1px solid #3f3f46;
|
||||
border-radius: 10px;
|
||||
padding: 10px 14px;
|
||||
background: #27272a;
|
||||
color: #f4f4f5;
|
||||
cursor: pointer;
|
||||
@@ -159,13 +188,12 @@
|
||||
background: #3f3f46;
|
||||
}
|
||||
#connection-gate-connect {
|
||||
border-color: #d97706;
|
||||
background: linear-gradient(180deg, #f59e0b, #d97706);
|
||||
border-color: #f59e0b;
|
||||
color: #111827;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(180deg, #fbbf24, #ea580c);
|
||||
}
|
||||
#connection-gate-connect:hover {
|
||||
background: linear-gradient(180deg, #fbbf24, #ea580c);
|
||||
background: linear-gradient(180deg, #f59e0b, #d97706);
|
||||
}
|
||||
#tarot-section {
|
||||
height: calc(100vh - 61px);
|
||||
@@ -199,6 +227,14 @@
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
#timeline-section {
|
||||
height: calc(100vh - 61px);
|
||||
background: #18181b;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
}
|
||||
#holiday-section {
|
||||
height: calc(100vh - 61px);
|
||||
background: #18181b;
|
||||
@@ -220,6 +256,9 @@
|
||||
#calendar-section[hidden] {
|
||||
display: none;
|
||||
}
|
||||
#timeline-section[hidden] {
|
||||
display: none;
|
||||
}
|
||||
#holiday-section[hidden] {
|
||||
display: none;
|
||||
}
|
||||
@@ -2243,31 +2282,64 @@
|
||||
}
|
||||
|
||||
/* ── Alphabet section ────────────────────────────────────────────────── */
|
||||
#alphabet-section {
|
||||
#alphabet-section,
|
||||
#alphabet-letters-section {
|
||||
height: calc(100vh - 61px);
|
||||
background: #18181b;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
}
|
||||
#alphabet-section[hidden] { display: none; }
|
||||
|
||||
#alphabet-section {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#alphabet-section[hidden],
|
||||
#alphabet-letters-section[hidden] { display: none; }
|
||||
|
||||
.alpha-lookup-shell {
|
||||
min-height: 100%;
|
||||
padding: 18px 16px 24px;
|
||||
box-sizing: border-box;
|
||||
display: grid;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.alpha-special-top {
|
||||
padding: 10px 12px 8px;
|
||||
border-bottom: 1px solid #27272a;
|
||||
overflow: auto;
|
||||
background: #151520;
|
||||
width: min(1120px, 100%);
|
||||
margin: 0 auto;
|
||||
padding: 14px;
|
||||
border: 1px solid #27272a;
|
||||
border-radius: 18px;
|
||||
overflow: visible;
|
||||
background: linear-gradient(180deg, #171726 0%, #12121a 100%);
|
||||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
|
||||
}
|
||||
|
||||
.alpha-gematria-card {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.alpha-gematria-toolbar {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.alpha-gematria-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
color: #d4d4d8;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.alpha-gematria-controls {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
|
||||
grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
|
||||
gap: 8px;
|
||||
align-items: start;
|
||||
}
|
||||
@@ -2278,6 +2350,10 @@
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.alpha-gematria-field.is-disabled {
|
||||
opacity: 0.55;
|
||||
}
|
||||
|
||||
.alpha-gematria-field > span {
|
||||
color: #a1a1aa;
|
||||
font-size: 11px;
|
||||
@@ -2316,6 +2392,70 @@
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.alpha-gematria-matches {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
||||
gap: 10px;
|
||||
max-height: min(52vh, 560px);
|
||||
overflow: auto;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.alpha-gematria-matches[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.alpha-gematria-match {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
padding: 12px;
|
||||
border: 1px solid #2f2f39;
|
||||
border-radius: 12px;
|
||||
background: #0c0c12;
|
||||
}
|
||||
|
||||
.alpha-gematria-match-word {
|
||||
color: #f4f4f5;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.alpha-gematria-match-definition {
|
||||
color: #d4d4d8;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.alpha-gematria-match-ciphers {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.alpha-gematria-match-cipher {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #3f3f46;
|
||||
border-radius: 999px;
|
||||
background: #18181b;
|
||||
color: #c4b5fd;
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.alpha-gematria-match-empty {
|
||||
grid-column: 1 / -1;
|
||||
padding: 14px;
|
||||
border: 1px dashed #3f3f46;
|
||||
border-radius: 12px;
|
||||
background: #101018;
|
||||
color: #a1a1aa;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.alpha-tabs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@@ -3675,17 +3815,17 @@
|
||||
border-left: 0;
|
||||
}
|
||||
#now-panel {
|
||||
--now-square-size: min(85vmin, calc(100vw - 172px), calc(100svh - 92px));
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 38px 24px 76px;
|
||||
min-height: clamp(740px, 90vh, 1140px);
|
||||
background: #1e1e24;
|
||||
height: calc(100svh - 88px);
|
||||
min-height: calc(100svh - 88px);
|
||||
padding: 10px clamp(68px, 14vw, 220px);
|
||||
background: #090c16;
|
||||
border-bottom: 1px solid #27272a;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 0;
|
||||
align-items: start;
|
||||
align-content: start;
|
||||
place-items: center;
|
||||
isolation: isolate;
|
||||
}
|
||||
|
||||
#now-panel[hidden] {
|
||||
@@ -3694,85 +3834,140 @@
|
||||
|
||||
#now-sky-layer {
|
||||
position: absolute;
|
||||
width: calc(100% + 1360px);
|
||||
height: calc(100% + 380px);
|
||||
top: -200px;
|
||||
left: -830px;
|
||||
width: max(calc(var(--now-square-size) * 3.25), calc(100% + 420px));
|
||||
height: max(calc(var(--now-square-size) * 2.28), calc(100% + 250px));
|
||||
top: 50.5%;
|
||||
left: 44%;
|
||||
transform: translate(-50%, -50%);
|
||||
transform-origin: center center;
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
opacity: 1;
|
||||
border: none;
|
||||
filter: none;
|
||||
filter: saturate(1.04);
|
||||
background-color: #000;
|
||||
}
|
||||
#now-panel::before {
|
||||
content: "";
|
||||
grid-column: 1 / -1;
|
||||
grid-row: 3;
|
||||
height: clamp(250px, 31vh, 430px);
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 1;
|
||||
pointer-events: none;
|
||||
background:
|
||||
radial-gradient(circle at 50% 57%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 22%, rgba(7, 11, 24, 0) 48%),
|
||||
radial-gradient(circle at 50% 57%, rgba(6, 10, 22, 0) 0%, rgba(6, 10, 22, 0) 38%, rgba(6, 10, 22, 0.38) 72%, rgba(3, 5, 12, 0.66) 100%);
|
||||
}
|
||||
#now-panel::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 1;
|
||||
background: transparent;
|
||||
z-index: 2;
|
||||
background: linear-gradient(180deg, rgba(3, 5, 12, 0.34) 0%, rgba(3, 5, 12, 0.08) 20%, rgba(3, 5, 12, 0.18) 100%);
|
||||
pointer-events: none;
|
||||
}
|
||||
#now-panel.is-overlay-hidden::before,
|
||||
#now-panel.is-overlay-hidden::after {
|
||||
opacity: 0;
|
||||
}
|
||||
.now-panel-controls {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: clamp(18px, 4vw, 44px);
|
||||
z-index: 5;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.now-panel-toggle {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px 10px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.72);
|
||||
border-radius: 999px;
|
||||
background: rgba(0, 0, 0, 0.82);
|
||||
color: #f8fafc;
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.now-panel-toggle input {
|
||||
margin: 0;
|
||||
accent-color: #ffffff;
|
||||
}
|
||||
.now-panel-square {
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
box-sizing: border-box;
|
||||
width: var(--now-square-size);
|
||||
max-width: 780px;
|
||||
aspect-ratio: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
grid-template-rows: minmax(0, 1.08fr) minmax(0, 0.92fr);
|
||||
gap: clamp(8px, 1.3vmin, 14px);
|
||||
padding: clamp(18px, 2.6vmin, 28px) clamp(12px, 1.8vmin, 18px) clamp(14px, 2vmin, 20px);
|
||||
border-radius: 28px;
|
||||
background: #000000;
|
||||
border: 2px solid rgba(255, 255, 255, 0.88);
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
#now-panel.is-overlay-hidden .now-panel-square {
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
.now-section {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
z-index: 1;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 10px 12px 12px;
|
||||
padding: clamp(8px, 1.3vmin, 12px) clamp(8px, 1.4vmin, 12px) 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
text-align: center;
|
||||
border-radius: 14px;
|
||||
border-radius: 0;
|
||||
overflow: hidden;
|
||||
isolation: isolate;
|
||||
border: 0;
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
|
||||
transition: color 180ms ease, box-shadow 180ms ease;
|
||||
box-shadow: none;
|
||||
transition: color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
|
||||
}
|
||||
.now-section::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: clamp(210px, 56%, 340px);
|
||||
height: 35%;
|
||||
left: 50%;
|
||||
bottom: 6px;
|
||||
transform: translateX(-50%);
|
||||
z-index: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.74;
|
||||
border-radius: 999px;
|
||||
background:
|
||||
radial-gradient(56% 58% at 24% 44%, rgba(26, 32, 47, 0.64) 0%, rgba(26, 32, 47, 0.24) 62%, transparent 100%),
|
||||
radial-gradient(52% 56% at 78% 40%, rgba(2, 6, 23, 0.58) 0%, rgba(2, 6, 23, 0.22) 62%, transparent 100%),
|
||||
radial-gradient(64% 70% at 50% 72%, rgba(8, 12, 28, 0.54) 0%, rgba(8, 12, 28, 0.2) 64%, transparent 100%);
|
||||
filter: saturate(0.92);
|
||||
display: none;
|
||||
}
|
||||
.now-section > * {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.now-section-hour {
|
||||
grid-area: 1 / 1;
|
||||
}
|
||||
.now-section-moon {
|
||||
grid-area: 1 / 2;
|
||||
}
|
||||
.now-section-decan {
|
||||
grid-area: 1 / 3;
|
||||
}
|
||||
#now-panel.is-day .now-section {
|
||||
color: #111827;
|
||||
box-shadow: 0 7px 16px rgba(15, 23, 42, 0.14);
|
||||
color: #f8fafc;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
#now-panel.is-day .now-section::before {
|
||||
background:
|
||||
radial-gradient(56% 58% at 24% 44%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.34) 62%, transparent 100%),
|
||||
radial-gradient(52% 56% at 78% 40%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.3) 62%, transparent 100%),
|
||||
radial-gradient(64% 70% at 50% 72%, rgba(241, 245, 249, 0.74) 0%, rgba(226, 232, 240, 0.28) 64%, transparent 100%);
|
||||
filter: saturate(1.02);
|
||||
display: none;
|
||||
}
|
||||
#now-panel.is-night .now-section {
|
||||
color: #f8fafc;
|
||||
box-shadow: 0 9px 20px rgba(0, 0, 0, 0.34);
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
#now-panel.is-day .now-title,
|
||||
#now-panel.is-day .now-tarot,
|
||||
@@ -3780,8 +3975,8 @@
|
||||
#now-panel.is-day .now-countdown-next,
|
||||
#now-panel.is-day .now-countdown-value,
|
||||
#now-panel.is-day .now-primary {
|
||||
color: #111827;
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
||||
color: #f8fafc;
|
||||
text-shadow: 0 1px 3px rgba(2, 6, 23, 0.75);
|
||||
}
|
||||
#now-panel.is-day .now-primary-hour {
|
||||
color: #581c87;
|
||||
@@ -3805,11 +4000,12 @@
|
||||
text-shadow: 0 1px 3px rgba(2, 6, 23, 0.75);
|
||||
}
|
||||
.now-card {
|
||||
margin: 6px 0 10px 0;
|
||||
width: 150px;
|
||||
height: 225px;
|
||||
margin: 2px 0 6px 0;
|
||||
width: min(64%, 144px);
|
||||
height: auto;
|
||||
aspect-ratio: 2 / 3;
|
||||
object-fit: cover;
|
||||
border-radius: 6px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #3f3f46;
|
||||
display: none;
|
||||
}
|
||||
@@ -3822,14 +4018,15 @@
|
||||
box-shadow: 0 10px 22px rgba(2, 6, 23, 0.58);
|
||||
}
|
||||
.now-countdown-row {
|
||||
margin-top: 4px;
|
||||
width: min(100%, 340px);
|
||||
margin-top: 2px;
|
||||
width: min(100%, 220px);
|
||||
display: grid;
|
||||
grid-template-columns: 130px 1fr;
|
||||
column-gap: 10px;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
column-gap: 6px;
|
||||
align-items: center;
|
||||
color: #a1a1aa;
|
||||
font-size: 12px;
|
||||
color: #cbd5e1;
|
||||
font-size: 14px;
|
||||
line-height: 1.18;
|
||||
text-align: left;
|
||||
}
|
||||
.now-countdown-value {
|
||||
@@ -3839,72 +4036,85 @@
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
||||
}
|
||||
.now-countdown-next {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: normal;
|
||||
overflow: visible;
|
||||
text-overflow: clip;
|
||||
}
|
||||
.now-title {
|
||||
font-size: 11px;
|
||||
color: #a1a1aa;
|
||||
font-size: 12px;
|
||||
color: #cbd5e1;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 4px;
|
||||
line-height: 1.12;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.now-stats-section {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
z-index: 1;
|
||||
grid-column: 1 / -1;
|
||||
grid-row: 2;
|
||||
margin-top: 10px;
|
||||
border-radius: 14px;
|
||||
padding: 12px 14px;
|
||||
background: rgba(15, 23, 42, 0.42);
|
||||
border: 1px solid rgba(148, 163, 184, 0.35);
|
||||
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
border-radius: 0;
|
||||
padding: clamp(8px, 1.25vmin, 12px) clamp(12px, 1.8vmin, 18px) 0;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
grid-template-rows: auto auto auto;
|
||||
gap: 4px;
|
||||
overflow: auto;
|
||||
}
|
||||
.now-stats-title {
|
||||
font-size: 11px;
|
||||
color: #cbd5e1;
|
||||
font-size: 14px;
|
||||
line-height: 1.08;
|
||||
color: #e2e8f0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
letter-spacing: 0.07em;
|
||||
font-weight: 700;
|
||||
}
|
||||
.now-stats-sabian {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
line-height: 1.4;
|
||||
font-size: clamp(17px, 2.5vmin, 23px);
|
||||
font-weight: 550;
|
||||
line-height: 1.32;
|
||||
color: #f8fafc;
|
||||
white-space: pre-line;
|
||||
overflow: visible;
|
||||
max-height: none;
|
||||
}
|
||||
.now-stats-planets {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 6px 10px;
|
||||
font-size: 13px;
|
||||
line-height: 1.35;
|
||||
gap: 4px 12px;
|
||||
font-size: clamp(15px, 1.9vmin, 17px);
|
||||
line-height: 1.3;
|
||||
color: #e2e8f0;
|
||||
align-content: start;
|
||||
min-height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
.now-stats-planet {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: normal;
|
||||
overflow: visible;
|
||||
text-overflow: clip;
|
||||
overflow-wrap: anywhere;
|
||||
line-height: 1.28;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
#now-panel.is-day .now-stats-section {
|
||||
background: rgba(255, 255, 255, 0.58);
|
||||
border-color: rgba(15, 23, 42, 0.2);
|
||||
box-shadow: 0 7px 16px rgba(15, 23, 42, 0.12);
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
#now-panel.is-day .now-stats-title {
|
||||
color: #475569;
|
||||
text-shadow: none;
|
||||
color: #e2e8f0;
|
||||
text-shadow: 0 1px 3px rgba(2, 6, 23, 0.75);
|
||||
}
|
||||
#now-panel.is-day .now-stats-sabian,
|
||||
#now-panel.is-day .now-stats-planets {
|
||||
color: #0f172a;
|
||||
text-shadow: none;
|
||||
color: #f8fafc;
|
||||
text-shadow: 0 1px 3px rgba(2, 6, 23, 0.75);
|
||||
}
|
||||
#now-panel.is-night .now-stats-title,
|
||||
#now-panel.is-night .now-stats-sabian,
|
||||
@@ -3912,8 +4122,9 @@
|
||||
text-shadow: 0 1px 3px rgba(2, 6, 23, 0.75);
|
||||
}
|
||||
.now-primary {
|
||||
font-size: 20px;
|
||||
font-size: clamp(16px, 2.4vmin, 24px);
|
||||
font-weight: 600;
|
||||
line-height: 1.15;
|
||||
}
|
||||
.now-primary-hour {
|
||||
color: #a855f7;
|
||||
@@ -3925,9 +4136,10 @@
|
||||
color: #f97316;
|
||||
}
|
||||
.now-tarot {
|
||||
font-size: 13px;
|
||||
font-size: clamp(12px, 1.7vmin, 16px);
|
||||
color: #d4d4d8;
|
||||
margin-top: 2px;
|
||||
line-height: 1.12;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.toastui-calendar-timegrid-time-column .toastui-calendar-timegrid-current-time {
|
||||
@@ -4214,9 +4426,37 @@
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.toastui-calendar-timegrid {
|
||||
height: 240%;
|
||||
min-height: 1200px;
|
||||
.toastui-calendar-layout.toastui-calendar-week-view {
|
||||
height: 100% !important;
|
||||
min-height: 0;
|
||||
display: grid;
|
||||
grid-template-rows: 52px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.toastui-calendar-layout.toastui-calendar-week-view > .toastui-calendar-panel.toastui-calendar-allday,
|
||||
.toastui-calendar-layout.toastui-calendar-week-view > :has(> .toastui-calendar-panel-resizer) {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.toastui-calendar-allday-panel,
|
||||
.toastui-calendar-panel.toastui-calendar-allday,
|
||||
.toastui-calendar-panel.toastui-calendar-allday .toastui-calendar-panel-title,
|
||||
.toastui-calendar-panel.toastui-calendar-allday .toastui-calendar-panel-grid-wrapper,
|
||||
.toastui-calendar-panel.toastui-calendar-allday .toastui-calendar-panel-allday-events {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.toastui-calendar-layout.toastui-calendar-week-view > .toastui-calendar-panel.toastui-calendar-time {
|
||||
grid-row: 2;
|
||||
height: auto !important;
|
||||
min-height: 0;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.toastui-calendar-timegrid,
|
||||
.toastui-calendar-timegrid-scroll-area {
|
||||
height: 100% !important;
|
||||
min-height: 0 !important;
|
||||
}
|
||||
|
||||
.toastui-calendar-event-time {
|
||||
@@ -4268,6 +4508,19 @@
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
#now-panel {
|
||||
--now-square-size: min(calc(100vw - 110px), calc(100svh - 94px));
|
||||
padding: 8px clamp(30px, 8vw, 82px);
|
||||
}
|
||||
.now-panel-square {
|
||||
border-radius: 22px;
|
||||
}
|
||||
.now-card {
|
||||
width: min(64%, 122px);
|
||||
}
|
||||
.now-stats-planets {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
.planet-layout {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
@@ -4283,6 +4536,114 @@
|
||||
}
|
||||
}
|
||||
|
||||
#calendar {
|
||||
height: calc(100vh - 96px);
|
||||
@media (max-width: 640px) {
|
||||
#now-panel {
|
||||
--now-square-size: min(calc(100vw - 74px), calc(100svh - 90px));
|
||||
padding: 6px clamp(20px, 6vw, 44px);
|
||||
}
|
||||
.now-panel-square {
|
||||
gap: 6px;
|
||||
padding: 6px;
|
||||
}
|
||||
.now-section {
|
||||
padding: 7px;
|
||||
}
|
||||
.now-card {
|
||||
width: min(60%, 96px);
|
||||
}
|
||||
.now-primary {
|
||||
font-size: clamp(12px, 3vw, 16px);
|
||||
}
|
||||
.now-countdown-row {
|
||||
width: 100%;
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
gap: 2px;
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.now-countdown-value,
|
||||
.now-countdown-next {
|
||||
text-align: center;
|
||||
}
|
||||
.now-stats-planets {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
#now-panel {
|
||||
--now-square-size: min(calc(100vw - 46px), calc(100svh - 86px));
|
||||
}
|
||||
.now-panel-square {
|
||||
border-radius: 18px;
|
||||
}
|
||||
.now-section,
|
||||
.now-stats-section {
|
||||
border-radius: 16px;
|
||||
padding: 7px;
|
||||
}
|
||||
.now-title,
|
||||
.now-stats-title {
|
||||
font-size: 9px;
|
||||
}
|
||||
.now-tarot,
|
||||
.now-stats-sabian,
|
||||
.now-stats-planets {
|
||||
font-size: 10px;
|
||||
}
|
||||
.now-stats-planets {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 520px) {
|
||||
#now-panel {
|
||||
--now-square-size: min(76vmin, calc(100vw - 78px), calc(100svh - 108px));
|
||||
height: calc(100svh - 101px);
|
||||
min-height: calc(100svh - 101px);
|
||||
padding: 6px clamp(28px, 9vw, 72px);
|
||||
}
|
||||
.now-panel-square {
|
||||
grid-template-rows: minmax(0, 0.92fr) minmax(0, 1.08fr);
|
||||
gap: 6px;
|
||||
padding: 16px 6px 8px;
|
||||
border-radius: 18px;
|
||||
}
|
||||
.now-section,
|
||||
.now-stats-section {
|
||||
border-radius: 16px;
|
||||
padding: 6px;
|
||||
}
|
||||
.now-card {
|
||||
width: min(66%, 92px);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
.now-title {
|
||||
font-size: 8px;
|
||||
}
|
||||
.now-primary {
|
||||
font-size: 15px;
|
||||
}
|
||||
.now-stats-title {
|
||||
font-size: 11px;
|
||||
}
|
||||
.now-stats-sabian {
|
||||
font-size: 11px;
|
||||
line-height: 1.42;
|
||||
}
|
||||
.now-stats-planets {
|
||||
font-size: 11px;
|
||||
line-height: 1.42;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
.now-tarot,
|
||||
.now-countdown-row {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#calendar {
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user