-
Notifications
You must be signed in to change notification settings - Fork 0
/
pickdiff.html
65 lines (65 loc) · 4.61 KB
/
pickdiff.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
<!DOCTYPE html>
<html>
<head>
<title>Step 3 of 3</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css3/extfonts.css" />
<link rel="stylesheet" href="css3/uikit.min.css" />
<script src="jscn/pickques.js"></script>
<script src="jscn/uikit.min.js"></script>
<script src="jscn/uikit-icons.min.js"></script>
</head>
<body>
<div style="background: #222222">
<div class="uk-container">
<h1 style="font-family: AkzidenzGroteskMedium; color: #32d296; padding-top: 10px;">Select difficulty</h1>
<p style="font-family: AkzidenzGroteskRegular; color: #ffffff;">Step 3 of 3</p>
<div class="uk-child-width-1-1 uk-child-width-1-1@s uk-grid-small uk-light" uk-grid>
<div>
<div class="uk-background-blend-multiply uk-background-primary uk-background-cover uk-height-small uk-panel uk-flex uk-flex-center uk-flex-middle" style="background-image: url(imgs/catg/misc.jpg);">
<p class="uk-h4" style="font-family: AkzidenzGroteskMedium; text-align: center;">Any difficulty [+0.50x]</p>
</div>
</div>
</div>
<div class="uk-child-width-1-3 uk-child-width-1-3@s uk-grid-small uk-light" uk-grid>
<div>
<div class="uk-background-blend-multiply uk-background-primary uk-background-cover uk-height-small uk-panel uk-flex uk-flex-center uk-flex-middle" onclick="slctDiff('easy')" style="background-image: url(imgs/diff/dif1.jpg);">
<p class="uk-h4" style="font-family: AkzidenzGroteskMedium; text-align: center;">Easy</p>
</div>
<div uk-drop="pos: bottom-justify; offset: 15;">
<div class="uk-card uk-card-body uk-card-default" style="padding:5px; background-color: #333333; color: #ffffff; font-family: AkzidenzGroteskRegular; text-align: justify;">
Basic and common questions - The ones that you know answers about even without any dedicated study.<br>Multiplier
<div style="color: #ffffff; font-family: EXORegular; font-size:225%">0.25x</div>
</div>
</div>
</div>
<div>
<div class="uk-background-blend-multiply uk-background-primary uk-background-cover uk-height-small uk-panel uk-flex uk-flex-center uk-flex-middle" onclick="slctDiff('medium')" style="background-image: url(imgs/diff/dif3.jpg);">
<p class="uk-h4" style="font-family: AkzidenzGroteskMedium; text-align: center;">Medium</p>
</div>
<div uk-drop="pos: bottom-justify; offset: 15;">
<div class="uk-card uk-card-body uk-card-default" style="padding:5px; background-color: #333333; color: #ffffff; font-family: AkzidenzGroteskRegular; text-align: justify;">
Advanced and thoughtful questions - The ones that would want to scratch you head before attempting.<br>Multiplier
<div style="color: #ffffff; font-family: EXORegular; font-size:225%">0.50x</div>
</div>
</div>
</div>
<div>
<div class="uk-background-blend-multiply uk-background-primary uk-background-cover uk-height-small uk-panel uk-flex uk-flex-center uk-flex-middle" onclick="slctDiff('hard')" style="background-image: url(imgs/diff/dif5.jpg);">
<p class="uk-h4" style="font-family: AkzidenzGroteskMedium; text-align: center;">Hard</p>
</div>
<div uk-drop="pos: bottom-justify; offset: 15;">
<div class="uk-card uk-card-body uk-card-default" style="padding:5px; background-color: #333333; color: #ffffff; font-family: AkzidenzGroteskRegular; text-align: justify;">
Rare and tough questions - The ones that can be solved only by seasoned players of the game.<br>Multiplier
<div style="color: #ffffff; font-family: EXORegular; font-size:225%">0.75x</div>
</div>
</div>
</div>
</div>
</div>
<br><br><br><br><br><br>
</div>
<br>
</body>
</html>