-
-
Notifications
You must be signed in to change notification settings - Fork 315
/
Copy pathsettings.html
46 lines (38 loc) · 1.03 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>stealth:settings</title>
<style>
@import url("../design/common/index.css");
@import url("../design/common/theme.css");
@import url("../design/common/elements.css");
@import url("../design/common/layout.css");
@import url("../design/card/Interface.css");
@import url("../design/card/Internet.css");
@import url("../design/card/Settings.css");
body > browser-card-interface,
body > browser-card-internet,
body > browser-card-settings {
margin: 64px auto 0px auto;
}
body > *:last-of-type {
margin-bottom: 64px;
}
</style>
</head>
<body data-page="settings">
<article>
<h3>Browser Settings</h3>
<p>
Here you can configure all Browser Settings that are stored
in your Profile folder. On this machine, the Stealth Profile
folder is located at:
</p>
<p>
<code data-key="profile">/home/$USER/Stealth</code>
</p>
</article>
<script type="module" src="settings.mjs"></script>
</body>
</html>