Skip to content

Commit 1653b63

Browse files
committed
Make header fancier
1 parent 6e0bfa5 commit 1653b63

File tree

1 file changed

+18
-29
lines changed

1 file changed

+18
-29
lines changed

index.md

Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,12 @@ This registration will involve:
1414

1515
<div style="display: inline-flex; align-items: center; vertical-align: middle;">➤ <img style="vertical-align: middle;" src="img/money_bag.svg" /> Paying a fee to Google</div>
1616
<br />
17-
1817
<div style="display: inline-flex; align-items: center; vertical-align: middle;">➤ <img style="vertical-align: middle;" src="img/contract_edit.svg" /> Agreeing to Google's Terms and Conditions</div>
1918
<br />
20-
2119
<div style="display: inline-flex; align-items: center; vertical-align: middle;">➤ <img style="vertical-align: middle;" src="img/id_card.svg" /> Providing government identification</div>
2220
<br />
23-
2421
<div style="display: inline-flex; align-items: center; vertical-align: middle;">➤ <img style="vertical-align: middle;" src="img/fingerprint.svg" /> Uploading evidence of the developer's private signing key</div>
2522
<br />
26-
2723
<div style="display: inline-flex; align-items: center; vertical-align: middle;">➤ <img style="vertical-align: middle;" src="img/receipt.svg" /> Listing all current and future application identifiers</div>
2824

2925

@@ -279,33 +275,26 @@ DISABLEDbody::before {
279275
}
280276

281277
h1 {
282-
text-align: center;
283-
284-
/* Text and Font Styling */
285-
font-family: 'Georgia', 'Times New Roman', serif; /* Use an elegant serif font */
286-
font-size: 3em; /* Large, noticeable size */
287-
font-weight: 700; /* Bold */
288-
color: #333333; /* Dark, but not harsh black */
289-
text-transform: capitalize; /* Optional: Capitalize the first letter of each word */
290-
letter-spacing: 2px; /* Subtle spacing for readability */
291-
292-
/* Background and Appearance */
293-
display: inline-block; /* Essential to wrap the background around the text only */
294-
padding: 10px 20px; /* Internal spacing around the text */
295-
margin: 30px 0; /* Vertical space for separation */
296-
border-radius: 8px; /* Slightly rounded corners */
297-
298-
/* Soft Gradient Background - The main eye-catcher */
299-
background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
300-
border: 1px solid #cccccc; /* Subtle border for definition */
301-
302-
/* Subtle Box Shadow - Adds depth without being heavy */
303-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
304-
305-
/* Text Shadow - Makes the text pop slightly */
306-
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
278+
font-size: 46px;
279+
font-weight: 600;
280+
color: #2c3e50;
281+
margin: 0;
282+
display: flex;
283+
align-items: center;
284+
gap: 20px;
285+
307286
}
308287

288+
.h1::before,
289+
.h1::after {
290+
content: '';
291+
flex: 1;
292+
height: 2px;
293+
background: linear-gradient(90deg, transparent, #3498db, transparent);
294+
max-width: 100px;
295+
}
296+
297+
309298
html, body: {
310299
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
311300
}

0 commit comments

Comments
 (0)