-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (75 loc) · 1.66 KB
/
index.html
File metadata and controls
92 lines (75 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!-- <!DOCTYPE html> -->
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href='https://fonts.googleapis.com/css?family=Inclusive Sans' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Archivo" rel="stylesheet">
<title>pit.fm</title>
</head>
<body>
<style type="text/css">
html,
body {
margin: 0;
padding: 0;
width: 100%;
}
body {
font-family: 'Inclusive Sans', Arial, Helvetica, sans-serif;
background: #FCFAFF;
color: #020005;
font-size: 17px;
line-height: 22px;
padding-top: 72px;
}
section.main {
width: 100%;
box-sizing: border-box;
margin: 0 auto;
max-width: 600px;
padding: 0 32px;
}
h1 {
font-size: 34px;
font-family: 'Archivo', serif;
font-weight: 800;
margin: 0 0 12px 0;
padding: 0;
line-height: 120%;
}
p {
display: block;
padding: 12px 0;
}
span.footer {
font-size: 13px;
line-height: 18px;
color: #545454;
}
@media (prefers-color-scheme: dark) {
body {
background: #020005;
color: #FCFAFF;
}
span.footer {
color: #ADA8A7;
}
}
@media (prefers-color-scheme: light) {
body {
background: #FCFAFF;
color: #020005;
}
span.footer {
color: #545454;
}
}
</style>
<section class="main">
<h1>Hello, World!</h1>
<p>Stay Tuned!</p>
</section>
<script src="https://pit.fm/js/script.js"></script>
</body>
</html>