Skip to content
Merged
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
24 changes: 20 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ html, body { height: 100%; }
body {
margin: 0;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
background: radial-gradient(1200px 800px at 20% -10%, #1a2458 0%, transparent 60%),
radial-gradient(900px 600px at 120% 10%, #27406d 0%, transparent 60%),
var(--bg);
background: var(--bg);
color: var(--text);
line-height: 1.6;
}
Expand Down Expand Up @@ -52,6 +50,24 @@ body {
gap: 24px;
}

.section {
display: flex;
flex-direction: column;
gap: 16px;
background: var(--panel);
border: 1px solid var(--border);
border-radius: 20px;
padding: 24px;
box-shadow: 0 20px 40px rgba(3, 6, 15, 0.55);
}

.section-title {
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.01em;
}

@media (min-width: 640px) {
.links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
Expand All @@ -74,7 +90,7 @@ body {
position: relative;
box-shadow: 0 8px 20px var(--shadow);
transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
margin-bottom: 16px;
margin: 0;
}

.card a {
Expand Down