-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimary.html
108 lines (102 loc) · 3.29 KB
/
primary.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/bulma.min.css" type="text/css">
<link rel="stylesheet" href="./css/style.css" type="text/css">
</head>
<body>
<section id="languageoverlay" class="hero is-fullheight is-bbh">
<div class="hero-content">
<div class="columns">
<div class="column is-4 is-offset-8">
<p>
<a class="language-button button is-large" data-language="de">
DE
</a>
</p>
<p>
<a class="language-button button is-large" data-language="en">
EN
</a>
<p>
</div>
</div>
</div>
</section>
<section id="main-hero" class="hero is-fullheight is-bbh is-bold">
<div id="header" class="hero-header">
<div class="counter-bg"></div>
<div class="header">
<div class="container">
<div class="header-left">
<span class="header-item">
<a class="intro-button button is-medium arrow-before">
</a>
<a id="changelanguage-button" class="button is-medium">
DE/EN
</a>
</span>
</div>
<div id="progress" class="header-right">
<span class="header-item">
<span class="counter-text">
<span class="translatable-question"></span>
</span>
<span class="counter"></span>
<span class="counter-text">
<span class="translatable-of"></span>
<span id="questions-needed"></span>
</span>
</span>
</div>
</div>
</div>
</div>
<div id="intro" class="hero-content">
<div class="container">
<p id="intro-text-1"></p>
<p id="intro-text-2"></p>
</div>
<a id="quiz-button" class="button is-large arrow-after arrow-big"></a>
</div>
<div id="quiz" class="hero-content">
<div class="container">
<div class="question title"></div>
<div class="answers">
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
<p>
<a href="#" class="answer button is-medium arrow-before"></a>
</p>
</div>
</div>
</div>
<div id="score" class="hero-content">
<div class="container">
<p id="score-title"></p>
<h1 id="score-name"></h1>
<p id="score-text"></p>
</div>
<a class="intro-button button is-large arrow-before"></a>
</div>
</section>
</body>
<script>
// You can also require other files to run in this process
require('./primary.js')
</script>
</html>