-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greens unfinished website</title>
<!-- favicons and other stuff -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
<link rel="manifest" href="/assets/favicons/site.webmanifest">
<link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#2b6b2e">
<link rel="shortcut icon" href="/assets/favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#4a676b">
<meta name="msapplication-config" content="/assets/favicons/browserconfig.xml">
<meta name="theme-color" content="#313131">
<!-- automatic theming -->
<link rel="stylesheet" href="src/lightmode.css">
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="src/darkmode.css">
<link rel="stylesheet" media="(prefers-constrast: more)" href="src/highcontrast.css">
<link rel="stylesheet" href="src/index.css">
<script type="module" src="src/index.js"></script>
</head>
<body>
<div id="themeswitcher">
<label for="theme-dropdown" id="theme-label">Theme: </label>
<select name="theme" id="theme-dropdown">
<option value="default">System</option>
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="snow">Snow</option>
<option value="summer">Summer</option>
<option value="summerdark">Summer Dark</option>
<option value="autumn">Autumn</option>
<option value="highcontrast">High Contrast</option>
</select>
</div>
<div id="md-output" class="hidden">
</div>
<div id="md-input" class="hidden">
<textarea id="input" placeholder="Input"># Sneakpeek of the GreenDown Editor
Sneakybeaky, you found the live GreenDown editor!
This is not finished but feel free to play around with it.
I plan to be doing some cool stuff with this site and GreenDown in the future.
</textarea>
</div>
</body>
</html>