-
Notifications
You must be signed in to change notification settings - Fork 2
/
chall.html
84 lines (65 loc) · 3.1 KB
/
chall.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
<!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>Challenge</title>
<!-- CSS -->
<style>
body {
word-wrap: break-word !important;
}
</style>
<!-- Fonts -->
<link rel='stylesheet' href='//cdn.jsdelivr.net/font-hack/2.020/css/hack.min.css'>
<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 href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="" id="styleSheet" type="text/css" rel="stylesheet" media="screen,projection"/>
<!-- Highlight.js Color Scheme -->
<link id="hl_styleSheet" href="css/hl_default.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<!-- NAVBAR -->
<nav class="nav-extended grey lighten-1">
<div class="nav-wrapper">
<a id="navbar-title" style="font-size: 1.7em; font-weight: 300;" class="black-text brand-logo center"></a>
<!-- Mobile -->
<a href="index.html" class="black-text left hide-on-large-only"><i style="font-size: 24px" class="material-icons"> chevron_left</i></a>
<!-- Full-width -->
<ul class="left hide-on-med-and-down">
<li id="pl" class="active"><a class="black-text" onClick="$('#sl').removeClass('active'); $('#pl').addClass('active'); $('ul.tabs').tabs('select_tab', 'problem');"><i class="material-icons left">assignment</i>Problem</a></li>
<li id="sl"><a class="black-text" onClick="$('#pl').removeClass('active'); $('#sl').addClass('active'); $('ul.tabs').tabs('select_tab', 'solution');"><i class="material-icons left">code</i>Solutions</a></li>
</ul>
<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><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>
<div class="hide-on-large-only nav-content">
<ul class="tabs tabs-transparent">
<li class="tab col s3"><a class="active" href="#problem">Problem</a></li>
<li class="tab col s3"><a id="slink" href="#solution">Solutions</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="col s12">
</div>
<div id="problem" class="text col s12">
</div>
<div id="solution" class="text col s12">
<br>
</div>
</div>
<!-- Scripts -->
<script src="js/styler.js"></script>
<script src="js/highlight.pack.js"></script>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="js/chall.js"></script>
<script src="js/analytics.js"></script>
</body>
</html>