Skip to content

Commit 38d2851

Browse files
authored
Merge pull request #1 from eferro/codex/change-background-to-solid-color
Simplify page background and polish sections
2 parents 2feb93a + af27861 commit 38d2851

1 file changed

Lines changed: 20 additions & 4 deletions

File tree

style.css

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ html, body { height: 100%; }
1616
body {
1717
margin: 0;
1818
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
19-
background: radial-gradient(1200px 800px at 20% -10%, #1a2458 0%, transparent 60%),
20-
radial-gradient(900px 600px at 120% 10%, #27406d 0%, transparent 60%),
21-
var(--bg);
19+
background: var(--bg);
2220
color: var(--text);
2321
line-height: 1.6;
2422
}
@@ -52,6 +50,24 @@ body {
5250
gap: 24px;
5351
}
5452

53+
.section {
54+
display: flex;
55+
flex-direction: column;
56+
gap: 16px;
57+
background: var(--panel);
58+
border: 1px solid var(--border);
59+
border-radius: 20px;
60+
padding: 24px;
61+
box-shadow: 0 20px 40px rgba(3, 6, 15, 0.55);
62+
}
63+
64+
.section-title {
65+
margin: 0;
66+
font-size: 20px;
67+
font-weight: 700;
68+
letter-spacing: -0.01em;
69+
}
70+
5571
@media (min-width: 640px) {
5672
.links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
5773
}
@@ -74,7 +90,7 @@ body {
7490
position: relative;
7591
box-shadow: 0 8px 20px var(--shadow);
7692
transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
77-
margin-bottom: 16px;
93+
margin: 0;
7894
}
7995

8096
.card a {

0 commit comments

Comments
 (0)