-
Notifications
You must be signed in to change notification settings - Fork 0
/
uiruti-fin.html
103 lines (100 loc) · 2.15 KB
/
uiruti-fin.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
<!doctype html>
<html>
<head>
<title>Cave of Eleven Sages</title>
<script src="/js/aes.js"></script>
<script src="/js/ctf.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
cipheredText = "U2FsdGVkX19biK+6qTFv29l8aFJws/NaSb/csy9zfhFMxONkmH2whaFG2ytch//7WA8yGCQGceWqqfx8P52hsDZ+/TVh3xTy1Q0CpswquJc=";
</script>
<style>
:root{
--dark: #343e3d;
--theme: #38e4ae;
--light: #ffffff;
}
* {
box-sizing: border-box;
}
body{
padding: 0;
margin: 0;
font-family: monospace, sans-serif;
text-align: center;
background: var(--dark);
color: var(--light);
font-size: 1rem;
}
header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
background: var(--dark);
}
header>h1{
font-size: 1.5rem;
color: var(--theme);
}
main{
display: inline-block;
width: min(100%,640px);
text-align: left;
margin: 80px 0;
padding: 16px;
}
main>img{
width: 100%;
}
footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 10px;
background: var(--theme);
text-align: center;
}
form{
display: inline-grid;
width: min(100%,640px);
grid-template-columns: 1fr auto;
grid-gap: 10px;
}
input,input:focus,button{
border: 0;
margin: 0;
outline: none;
background: none;
border-bottom: 2px solid var(--dark);
color: var(--dark);
padding: 5px;
font-size: 1rem;
font-family: monospace, sans-serif;
width: 100%;
}
button{
background: var(--dark);
color: var(--light);
border: none;
padding: 5px 15px;
border-radius: 2px;
}
</style>
</head>
<body>
<header>
<h1>Finish</h1>
</header>
<br>
<main>
<p>
The box opens the moment you utter the spell, and there is a majestic horn inside.
Not knowing how true the legend is, it is now up to you to decide.
</p>
</main>
</body>
<html>