-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (118 loc) · 3.1 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>try iglü</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
font-family: "Lucidia Grande", "Segoe UI", "Roboto", sans-serif;
font-size: 1.2em;
max-width: 1250px;
position: relative;
margin: 0 auto;
background-color: #fefefe;
padding: 20px 30px;
}
.center {
margin: 0 auto;
position: relative;
}
input {
border-radius: 0;
border: #ccc 1px solid;
padding: 4px 6px;
max-width: 100%;
}
iframe {
width: 560px;
height:315px;
max-width: 100%;
}
footer {
font-size: 0.8rem;
text-align: center;
margin-top: 30px;
}
.title {
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
padding: 0 30px 0 30px
}
p {
margin: 10px 0;
text-align: center;
}
a {
color: inherit;
}
img {
width: 30%;
display: block;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
font-align: center;
color: #efefef;
background-color: #3843c1;
padding: 5px 10px;
border: #ccc 1px solid;
text-decoration: none;
margin-top: 10px;
}
.btn:focus {
border: #888 1px solid;
}
.dark {
display: none;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #202125;
color: #cfcfcf;
}
.light {
display: none;
}
.dark {
display: block;
}
.btn {
border: #000 2px solid;
}
textarea, input {
background-color: #434449;
border-color: #666;
color: #efefef;
}
}
</style>
</head>
<body>
<img src="iglu-dark.svg" class="light"/>
<img src="iglu-light.svg" class="dark"/>
<h1 class="title">try iglü</h1>
<p>iglü can be accessed below. Login credentials are prefilled.</p>
<!--<p><b>Email:</b> demo@nacdlow.com</p>
<p><b>Password:</b> password</p>-->
<p>
<a href="https://app.nacdlow.com" target="iglu" class="btn">open iglü</a>
</p>
<h2 class="title">demo video</h2>
<div class="center" style="width:560px;">
<iframe src="https://www.youtube-nocookie.com/embed/KMfItuTf2jQ"
frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<!--<h2 class="title">join our Minecraft server</h2>
<p>If you have a copy of Minecraft: Java Edition, you may join our simulation's Minecraft
server to try it out!</p>
<p><b>Server address:</b> <input readonly="1" value="demo.nacdlow.com" size="15"></input></p>
<p><b>Minecraft version:</b> 1.15.2</p>-->
<footer>
<p>Copyright 2019-2025 <a href="https://nacdlow.com">Nacdlow</a></p>
</footer>
</body>
</html>