Skip to content

Commit b1852b9

Browse files
authored
Update index.html
1 parent 2d4a084 commit b1852b9

1 file changed

Lines changed: 17 additions & 15 deletions

File tree

index.html

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@
99
<meta name="description" content="Windows XP Experience">
1010
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1111

12-
<!-- Font -->
13-
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
12+
<!-- Google Sans Font -->
13+
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600&display=swap" rel="stylesheet">
1414

1515
<style>
1616
:root {
1717
--bg: radial-gradient(1200px at top, #1b1f3b, #0a0c16);
1818
--glass: rgba(255, 255, 255, 0.07);
1919
--border: rgba(255, 255, 255, 0.18);
2020
--glow: rgba(120, 140, 255, 0.45);
21+
--header-text: #E8EAED;
22+
--loader-text: #FFFFFF;
23+
--loader-bg: rgba(33, 33, 33, 0.85);
2124
}
2225

2326
* {
@@ -62,20 +65,21 @@
6265
height: 56px;
6366
display: flex;
6467
align-items: center;
65-
padding: 0 20px;
68+
padding: 0 24px;
6669
background: linear-gradient(
6770
to bottom,
68-
rgba(0,0,0,0.35),
71+
rgba(0,0,0,0.25),
6972
rgba(0,0,0,0)
7073
);
7174
z-index: 10;
7275
pointer-events: none;
7376
}
7477

7578
header span {
76-
font-size: 14px;
77-
letter-spacing: 0.14em;
78-
color: rgba(255,255,255,0.85);
79+
font-size: 16px; /* Material subtitle1 size */
80+
font-weight: 500; /* Medium */
81+
letter-spacing: 0.15px;
82+
color: var(--header-text);
7983
}
8084

8185
iframe {
@@ -90,14 +94,12 @@
9094
display: flex;
9195
align-items: center;
9296
justify-content: center;
93-
font-size: 13px;
94-
letter-spacing: 0.2em;
95-
color: rgba(255,255,255,0.8);
96-
background: linear-gradient(
97-
180deg,
98-
rgba(0,0,0,0.5),
99-
rgba(0,0,0,0.8)
100-
);
97+
font-size: 14px; /* Material body2 size */
98+
font-weight: 500; /* Medium for visibility */
99+
letter-spacing: 0.1em;
100+
color: var(--loader-text);
101+
background: var(--loader-bg);
102+
border-radius: 12px;
101103
transition: opacity 0.6s ease;
102104
z-index: 20;
103105
pointer-events: none;

0 commit comments

Comments
 (0)