-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunder_construction.html
73 lines (67 loc) · 1.85 KB
/
under_construction.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="CustomBAR" />
<meta
name="description"
content="CustomBAR: Dynamic progress bars, Rumble API, community skins, and volunteer-driven enhancements!"
/>
<meta
name="keywords"
content="CustomBAR, progress bar, customization, animations, Rumble API, community skins, stable releases, streaming, volunteer, free open-source"
/>
<title>CustomBAR</title>
<style>
/* Basic styles for the maintenance page */
body {
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #141023; /* Background color */
color: #ffffff; /* Text color */
font-family: Arial, sans-serif;
font-size: 24px;
text-align: center;
}
.maintenance-content {
max-width: 80%;
margin-bottom: 20px;
}
.back-button {
padding: 10px 20px;
background-color: transparent;
color: #ffffff;
text-decoration: none;
border: 1px solid #ffffff;
border-radius: 5px;
transition: background-color 0.6s ease;
border-radius: 50px;
}
.back-button:hover {
background-color: #e94a64;
}
nav {
position: absolute;
top: 50px;
font-size: 50px;
color: #58a6ff;
}
</style>
</head>
<body>
<nav>
<div>CustomBAR</div>
</nav>
<div class="maintenance-content">
<p>
Sorry, this feature is currently under maintenance. We'll be back soon!
</p>
<a href="main.html" class="back-button">Back to Main Page</a>
</div>
</body>
</html>