-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.html
88 lines (73 loc) · 2.67 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Settings</title>
<!-- CSS -->
<style>
body {
word-wrap: break-word !important; }
</style>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link id="styleSheet" href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<!-- NAVBAR -->
<nav class="grey lighten-1">
<div class="nav-wrapper">
<a style="font-size: 1.7em; font-weight: 300;" class="black-text brand-logo center">Settings</a>
<!-- Mobile -->
<a href="index.html" class="left hide-on-large-only black-text"><i style="font-size: 24px" class="material-icons"> chevron_left</i></a>
<!-- Full-width -->
<ul class="right hide-on-med-and-down">
<li><a class="black-text" href="index.html"><i class="material-icons left">view_agenda</i>Challenges</a></li>
<li class="active"><a class="black-text" href="settings.html"><i class="material-icons left">settings</i>Settings</a></li>
<li><a class="black-text" href="credits.html"><i class="material-icons left">info</i>About</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="col s12">
<br>
<form action="#">
<a style="font-size:24px"> Theme:
<input name="group1" type="radio" id="light" />
<label style="font-size:24px" for="light">Light</label>
<input name="group1" type="radio" id="dark" />
<label style="font-size:24px" for="dark">Dark</label>
</a>
<br>
<a class="black-text">The dark theme uses the Monokai color scheme for code blocks.</a>
</form>
<!-- Switch
<div class="switch">
<a style="font-size:24px"> Enable Alpha version </a>
<label>
<input checked="false" type="checkbox">
<span class="lever"></span>
</label>
</div>
-->
<!--<div class="switch">
<a style="font-size:24px"> Enable Code Highlightning </a>
<label>
<input checked="false" type="checkbox">
<span class="lever"></span>
</label>
</div>
-->
<br>
<a id="sub" onclick="apply()" class="waves-effect waves-light btn">Apply</a>
</div>
</div>
<!-- Scripts -->
<script src="js/jquery.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="js/styler.js"></script>
<script src="js/analytics.js"></script>
<script src="js/settings.js"></script>
</body>
</html>