-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (96 loc) · 2.67 KB
/
index.html
File metadata and controls
97 lines (96 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Positions - Eulen Labs</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f8f9fa;
color: #343a40;
margin: 0;
}
.container {
text-align: center;
max-width: 720px;
padding: 32px 24px;
}
.logo {
max-width: 150px;
margin-bottom: 30px;
}
h1 {
font-size: 2.5em;
color: #212529;
margin-bottom: 40px;
}
.jobs {
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
}
.job-link {
display: inline-block;
padding: 15px 30px;
background-color: #007bff;
color: #ffffff;
text-decoration: none;
border-radius: 8px;
font-size: 1.2em;
transition: background-color 0.3s ease;
min-width: 320px;
}
.job-link:hover {
background-color: #0056b3;
}
/* Dark Mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
color: #e0e0e0;
}
h1 {
color: #ffffff;
}
.job-link {
background-color: #0056b3;
color: #ffffff;
}
.job-link:hover {
background-color: #007bff;
}
}
@media (max-width: 640px) {
body {
height: auto;
min-height: 100vh;
padding: 24px 0;
}
h1 {
font-size: 2em;
}
.job-link {
min-width: 0;
width: 100%;
box-sizing: border-box;
}
}
</style>
</head>
<body>
<div class="container">
<img src="eulen.png" alt="Eulen Labs Logo" class="logo">
<h1>Open Positions</h1>
<div class="jobs">
<a href="b2b-operations.html" class="job-link">B2B Operations – Scale Bitcoin-Native Payments</a>
<a href="senior-devops.html" class="job-link">Senior DevOps Engineer – Cloud, Reliability & Incident Response</a>
</div>
</div>
</body>
</html>