Skip to content

Commit 6e0bfa5

Browse files
committed
Make header fancier
1 parent 135d7e7 commit 6e0bfa5

File tree

1 file changed

+28
-4
lines changed

1 file changed

+28
-4
lines changed

index.md

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ without first registering centrally with Google.
1313
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>
16+
<br />
1617

1718
<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>
19+
<br />
1820

1921
<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>
22+
<br />
2023

2124
<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>
25+
<br />
2226

2327
<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>
2428

@@ -276,10 +280,30 @@ DISABLEDbody::before {
276280

277281
h1 {
278282
text-align: center;
279-
padding: 20px;
280-
margin: 20px auto;
281-
XXXmax-width: 800px;
282-
XXXborder-radius: 8px;
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);
283307
}
284308

285309
html, body: {

0 commit comments

Comments
 (0)