forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathokpage.html
More file actions
95 lines (84 loc) · 1.81 KB
/
Copy pathokpage.html
File metadata and controls
95 lines (84 loc) · 1.81 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
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Setup Completed</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap" rel="stylesheet">
<style>
body {
font-family: Assistant, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
a,
p {
font-family: Assistant, sans-serif;
}
.container {
margin: 0.5rem;
background-color: #fff;
padding: 5rem;
display: flex;
flex-direction: column;
gap: 5rem;
align-items: center;
justify-content: center;
border-radius: 4px;
box-shadow: 0 0 0.075rem rgb(0, 0, 0);
max-width: 600px;
text-align: center;
}
.container a {
text-decoration: none;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
padding-left: 3.75rem;
padding-right: 3.75rem;
border: none;
border-radius: 4px;
background-color: #000000;
color: #FFFFFF;
font-size: 1.5rem;
cursor: pointer;
box-sizing: border-box;
}
.container a:hover {
background-color: rgba(0, 0, 0, 0.75);
}
.container>div:first-of-type {
display: flex;
flex-direction: row;
gap: 40px;
}
.container>p:first-of-type {
font-size: 1.5rem;
color: #000000;
}
@media (max-width: 600px) {
.container {
padding: 2.5rem;
gap: 2.5rem;
}
.container a {
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div>
<img src="/templates/static/images/done_icon.svg" />
</div>
<p>Notion is connected with your Omi</p>
</div>
</body>
</html>