forked from Start9Labs/start-technologies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 855 Bytes
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 855 Bytes
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
<!doctype html>
<html>
<head>
<title>StartOS | Initializing</title>
<style>
body {
background: #333333;
font-family: system-ui;
color: #f4f4f5;
text-align: center;
font-size: 20px;
}
.header-title {
padding-top: 6rem;
}
.header-title span {
position: relative;
}
.header-title span::before {
content: '';
position: absolute;
top: 100%;
width: 100%;
left: 0;
height: 3px;
border-radius: 2px;
background: linear-gradient(130deg, #ee6570, #ff4961, #993e4a);
}
</style>
</head>
<body>
<h2 class="header-title"><span>StartOS Initializing</span></h2>
<p style="padding: 20px">
This process can take up to several minutes to complete.
</p>
</body>
</html>