-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (153 loc) · 5.29 KB
/
Copy pathindex.html
File metadata and controls
169 lines (153 loc) · 5.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- tab stuff -->
<title>Welcome to PoyoLabs</title>
<link rel="icon" type="image/png" href="/static/potion.ico" size="32x32">
<style>
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Cinzel:wght@400;700&display=swap');
/* Local/demo font: Longalberica - expects the file at /static/assets/Longalberica-DEMO.ttf */
@font-face {
font-family: 'Longalberica';
src: url('/static/assets/Longalberica-DEMO.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
body {
font-family: 'Cinzel', serif;
background: url('/static/closed.gif') center/cover fixed;
color: #e0e0e0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
text-align: center;
cursor: url('/static/cursor.cur'), default;
position: relative;
padding-bottom: 0;
}
/* Add a subtle darkening overlay to ensure text remains readable */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
pointer-events: none;
}
.container {
position: relative; /* To appear above the background */
background: rgba(90, 51, 24, 0.88); /* darker door brown tint */
backdrop-filter: blur(3px);
/* Smaller padding to reduce size */
padding: 34px 38px 26px;
/* Semi-elliptical shape: large radius at top, straight at bottom */
border-radius: 160px 160px 0 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(170,120,60,0.55); /* adjust border to harmonize with darker brown */
/* Reduce negative translateY to move semiellipse down slightly more */
transform: translateY(-15px) scale(0.85);
transform-origin: center center;
/* Ensure bottom alignment with the door */
margin-top: auto;
/* Remove explicit width constraints (revert widening) */
}
.logo {
width: 72px;
height: 72px;
display: block;
margin: 0 auto 20px;
object-fit: contain;
}
h1 {
font-family: 'MedievalSharp', cursive;
font-size: 4rem;
color: #f7b733; /* Potion gold */
margin: 0 0 8px;
text-shadow: none;
}
.container p {
font-size: 0.9rem;
color: #ccc;
margin-bottom: 20px;
font-family: 'Longalberica', serif; /* tagline uses Longalberica */
}
.enter-button {
display: inline-block;
font-family: 'Longalberica', serif;
font-size: 1.1rem;
font-weight: 700;
color: #1a1a2e;
background: #f7b733;
padding: 10px 26px;
border-radius: 0;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: none;
transition: all 0.3s ease;
}
.enter-button:hover {
background: #ffdead; /* Lighter gold */
box-shadow: none;
transform: scale(1.05);
}
.demo-button {
display: inline-block;
font-family: 'Longalberica', serif;
font-size: 0.95rem;
font-weight: 700;
color: #f7b733;
background: transparent;
padding: 8px 24px;
border-radius: 0;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
border: 2px solid #f7b733;
transition: all 0.25s ease;
}
.demo-button:hover {
background: rgba(247,183,51,0.08);
transform: translateY(-2px);
box-shadow: none;
}
a,
button,
[role="button"],
input[type="submit"],
input[type="button"] {
/* Force the custom cursor here too, overriding the browser's default 'pointer' */
cursor: url('/static/cursor.cur'), auto !important;
}
a:hover,
button:hover,
a:active,
button:active {
cursor: url('/static/cursor.cur'), auto !important;
}
</style>
</head>
<body>
<div class="container">
<img src="/static/potion.png" alt="Potion Logo" class="logo">
<h1>PoyoLabs</h1>
<p>A place for peak potion performance.</p>
<div style="display:flex;flex-direction:column;gap:16px;align-items:center;margin-top:40px;margin-bottom:10px;">
<a href="/login" class="enter-button" id="loginBtn">
Clock In
</a>
<a href="/loading?demo=1" class="demo-button" id="demoBtn">
Take a Peek
</a>
</div>
</div>
</body>
</html>