Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions src/components/Architecture.astro
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ function markKeywords(text: string): string {
.arch-layer-label {
fill: rgba(180, 170, 235, 0.78);
font-family: var(--mono);
font-size: 10px;
font-size: 0.625rem;
font-weight: 700;
letter-spacing: 0.16em;
text-transform: uppercase;
Expand All @@ -444,7 +444,7 @@ function markKeywords(text: string): string {
.arch-boundary-tag {
fill: rgba(180, 170, 235, 0.72);
font-family: var(--mono);
font-size: 9px;
font-size: 0.5625rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
Expand All @@ -463,7 +463,7 @@ function markKeywords(text: string): string {
.arch-return-label {
fill: rgba(74, 222, 128, 0.78);
font-family: var(--mono);
font-size: 9px;
font-size: 0.5625rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
Expand All @@ -489,7 +489,7 @@ function markKeywords(text: string): string {
.arch-node text {
fill: rgba(232, 224, 240, 0.92);
font-family: 'Space Grotesk', system-ui, sans-serif;
font-size: 13px;
font-size: 0.8125rem;
font-weight: 600;
pointer-events: none;
user-select: none;
Expand Down Expand Up @@ -543,7 +543,7 @@ function markKeywords(text: string): string {
align-items: center;
gap: 8px;
font-family: var(--mono);
font-size: 10px;
font-size: 0.625rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
Expand All @@ -561,14 +561,14 @@ function markKeywords(text: string): string {
box-shadow: 0 0 8px rgba(180, 170, 235, 0.45);
}
.arch-detail-title {
font-size: 22px;
font-size: 1.375rem;
font-weight: 700;
color: var(--white);
line-height: 1.25;
letter-spacing: -0.015em;
}
.arch-detail-body {
font-size: 15px;
font-size: 0.9375rem;
line-height: 1.6;
color: rgba(232, 224, 240, 0.82);
margin-bottom: 4px;
Expand All @@ -584,7 +584,7 @@ function markKeywords(text: string): string {
.arch-detail-bullets li {
position: relative;
padding-left: 22px;
font-size: 14px;
font-size: 0.875rem;
line-height: 1.55;
color: rgba(232, 224, 240, 0.72);
}
Expand Down Expand Up @@ -635,13 +635,13 @@ function markKeywords(text: string): string {
pointer-events: auto;
}
:global(.arch-tooltip-def) {
font-size: 12.5px;
font-size: 0.7812rem;
line-height: 1.55;
color: rgba(232, 224, 240, 0.88);
margin-bottom: 6px;
}
:global(.arch-tooltip-link) {
font-size: 11.5px;
font-size: 0.7188rem;
font-family: var(--mono);
color: #B4AAEB;
text-decoration: none;
Expand All @@ -657,8 +657,8 @@ function markKeywords(text: string): string {
}
@media (max-width: 640px) {
.arch-detail { padding: 18px; }
.arch-detail-title { font-size: 19px; }
.arch-detail-body { font-size: 14px; }
.arch-detail-bullets li { font-size: 13.5px; }
.arch-detail-title { font-size: 1.1875rem; }
.arch-detail-body { font-size: 0.875rem; }
.arch-detail-bullets li { font-size: 0.8438rem; }
}
</style>
Loading