-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (148 loc) · 5.35 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Schrödinger's Box - Login</title>
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.13.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic"
rel="stylesheet" type="text/css" />
<!-- Third party plugin CSS-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="./css/login.css" rel="stylesheet" />
<style>
@media (max-width: 576px) {
header.masthead {
height: 100vh;
min-height: 40rem;
padding-top: 4.5rem;
padding-bottom: 0;
}
header .masthead .explanation {
font-size: 10rem;
}
header .masthead .inf {
font-size: 5rem;
}
footer {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
}
@media (min-width: 576px) {
header.masthead {
height: 90vh;
min-height: 40rem;
padding-top: 4.5rem;
padding-bottom: 0;
}
header .masthead .explanation {
font-size: 10rem;
}
header .masthead .inf {
font-size: 5rem;
}
footer {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
}
@media (min-width: 768px) {
header.masthead {
height: 88vh;
min-height: 40rem;
padding-top: 4.5rem;
padding-bottom: 0;
}
header .masthead .explanation {
font-size: 10rem;
}
header .masthead .inf {
font-size: 5rem;
}
footer {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
}
@media (min-width: 992px) {
header.masthead {
height: 90vh;
min-height: 40rem;
padding-top: 4.5rem;
padding-bottom: 0;
}
header .masthead .explanation {
font-size: 10rem;
}
header .masthead .inf {
font-size: 5rem;
}
footer {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
}
@media (min-width: 1200px) {
header.masthead {
height: 100vh;
min-height: 40rem;
padding-top: 4.5rem;
padding-bottom: 0;
}
header.masthead .explanation {
font-size: 3rem;
}
header.masthead .inf {
font-size: 2rem;
}
footer {
padding-top: 2rem !important;
padding-bottom: 2rem !important;
}
}
</style>
<script src="./js/common.js"></script>
</head>
<body id="page-top">
<!-- Masthead-->
<header class="masthead">
<div class="container h-100">
<div class="row h-100 align-items-center justify-content-center text-center">
<div class="col-lg-10 align-self-end">
<h1 class="text-uppercase text-white font-weight-bold"
style="text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);">Schrödinger's Box</h1>
<hr class="divider my-4" />
</div>
<div class="col-lg-8 align-self-baseline">
<p class="text-white-75 font-weight-light mb-5">Explore all possibilities of fun!</p>
<button class="btn btn-primary btn-xl js-scroll-trigger" id="login_button" type="button">Login from
Here</button>
</div>
</div>
</div>
</header>
<!-- Footer-->
<footer class="bg-light py-5">
<div class="container">
<div class="small text-center text-muted">Copyright © 2020 - Schrödinger's Box</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
<!-- Core theme JS-->
<script src="./js/scripts.js"></script>
<script src="./js/login.js"></script>
</body>
</html>