forked from steffalon/dualsense-edge-profile-web-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (82 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/icon.png"/>
<meta name="description"
content="Enable profile creation, deletion, and modification functionalities on a DualSense Edge controller without a PlayStation 5 console."/>
<meta name="keywords" content="dualsense, edge, configurator"/>
<meta name="robots" content="index,nofollow"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>DualSense Edge Profile Web Application</title>
<style>
body {
margin: 0;
font-family: sans-serif;
background-color: #f2f7f5;
}
noscript {
margin: auto;
display: flex;
height: 100vh;
padding: 0 25px;
max-width: 520px;
}
.noscript-content {
margin: auto;
color: #475d5b;
border-bottom: 2px solid #00332c;
border-top: 2px solid #00332c;
padding: 10px 20px;
}
.noscript-content a {
color: #faae2b;
font-weight: bold;
}
.noscript-header {
color: #00473e;
letter-spacing: 0.42pt;
}
.noscript-paragraph {
letter-spacing: 0.16pt;
line-height: 1.5rem;
}
input {
accent-color: #408EC6;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #0f0e17;
}
input {
accent-color: #f25f4c;
}
.noscript-header {
color: #fffffe;
}
.noscript-content {
color: #a7a9be;
border-bottom: 2px solid #ffffff;
border-top: 2px solid #ffffff;
background-color: #1F1B24;
}
.noscript-content a {
color: #ff8906;
font-weight: bold;
}
}
</style>
</head>
<body>
<noscript>
<div class="noscript-content">
<h2 class="noscript-header">Greetings gamer!</h2>
<p class="noscript-paragraph">To configure a DualSense Edge controller and store your own local save data,
JavaScript must be enabled to communicate with your DualSense Edge device.</p>
<p class="noscript-paragraph">If you've just enabled JavaScript, please <a href="/">refresh</a> this page</p>
</div>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>