-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 1.43 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>New tab - Freshtab</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-color: #111;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
#quote-container {
max-width: 800px;
padding: 20px;
text-align: center;
color: white;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
#quote-text {
font-size: 3.25rem;
font-weight: 600;
line-height: 1.3;
margin: 0;
}
#quote-author {
display: block;
font-size: 1.125rem; /* 18px */
font-style: italic;
margin-top: 1rem;
opacity: 0.9;
}
.is-hidden {
display: none !important;
}
</style>
<script type="module" src="js/index.js"></script>
</head>
<body class="body">
<div id="quote-container">
<p id="quote-text"></p>
<span id="quote-author" class="is-hidden">— Gemini Nano</span>
</div>
</body>
</html>