generated from simpleanalytics/static-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (114 loc) · 2.97 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Demo Simple Analytics</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Basics */
body,
html {
margin: 0;
padding: 0;
height: 100%;
}
body {
background: #eef9ff;
word-break: break-word;
display: flex;
justify-content: center;
color: #415659;
font-family: "Space Grotesk", Arial, sans-serif;
font-weight: 400;
}
main {
margin: auto;
}
* {
box-sizing: border-box;
}
/* Fonts */
@font-face {
font-family: "Space Grotesk";
font-weight: 500;
src: url("https://assets.simpleanalytics.com/fonts/SpaceGrotesk-Medium.woff2")
format("woff2"),
url("https://assets.simpleanalytics.com/fonts/SpaceGrotesk-Medium.woff")
format("woff");
}
@font-face {
font-family: "Space Grotesk";
font-weight: 400;
src: url("https://assets.simpleanalytics.com/fonts/SpaceGrotesk-Regular.woff2")
format("woff2"),
url("https://assets.simpleanalytics.com/fonts/SpaceGrotesk-Regular.woff")
format("woff");
}
h1,
h2,
h3,
h4 {
margin: 0 0 1rem 0;
line-height: 1.5;
font-weight: 500;
}
p {
font-size: 1rem;
line-height: 150%;
}
textarea, input {
border: 1px solid #232e2f;
border-radius: 5px;
}
a {
color: #415659;
}
a:hover {
text-decoration: none;
}
/* Layouts */
main {
padding: 2rem;
flex: 0 1 auto;
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background: #2a3638;
}
textarea,
input {
background: #232e2f;
}
body,
a,
textarea,
input {
color: #a4bdc0;
}
}
</style>
</head>
<body>
<main>
<svg
width="70"
height="70"
viewBox="0 0 400 400"
fill="none"
xmlns="http://www.w3.org/2000/svg"
style="margin-bottom: 1rem"
>
<circle cx="200" cy="200" r="200" fill="#FF4F64" />
<path d="M132.414 201.448H100V298.69H132.414V201.448Z" fill="white" />
<path d="M210.206 143.103H177.793V298.69H210.206V143.103Z" fill="white" />
<path d="M288 88H255.586V298.69H288V88Z" fill="white" />
</svg>
<h2>Demo</h2>
<p>Just a website for demonstration purposes.</p>
</main>
<!-- 100% privacy friendly analytics -->
<script data-collect-dnt="true" async defer src="https://simple.demo.simpleanalytics.com/latest.js"></script>
<noscript><img src="https://simple.demo.simpleanalytics.com/noscript.gif?collect-dnt=true" alt="" referrerpolicy="no-referrer-when-downgrade" /></noscript>
</body>
</html>