-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 4.54 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
<!doctype html>
<html lang="en">
<head>
<title>RServer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Noto Sans' rel='stylesheet'>
<style>
@font-face {
font-family: geomanist;
src: url("assets/geomanist-regular-webfont.woff2");
}
</style>
</head>
<body>
<div id="bigdiv" class="d-flex align-items-center justify-content-center min-vh-100">
<div class="container text-center mx-3">
<div class="row rounded-top-custom" id="imagerow">
<div class="col">
<img src="assets/rserver-logo-full.avif" width="80%" style="margin-bottom: 40px; margin-top: 40px;">
</div>
</div>
<div class="row container-fill p-2">
<div class="col">
<h1 style="font-family: geomanist; margin-top: 10px;">welcome to <b id="special-text">your</b> community</h1><br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ac fermentum metus. Proin sed porta lorem. Etiam a mi feugiat, commodo sapien ullamcorper, ullamcorper neque. Phasellus justo est, volutpat quis nisl eget, tincidunt fermentum lacus. Proin sollicitudin rutrum est hendrerit iaculis.</p>
<p>Maecenas tristique tellus non enim aliquet, eget rhoncus dui euismod?</p>
</div>
</div>
<div class="row container-fill rounded-bottom-custom p-2">
<div class="col">
<div class="btn-toolbar justify-content-center" role="toolbar" aria-label="Button choice" style="margin-bottom: 12px; font-family: geomanist;">
<button type="button" class="btn button-style btn-primary rounded-button-custom me-3" data-bs-toggle="modal" data-bs-target="#minecraft-modal" style="--bs-btn-padding-y: 0.75rem; --bs-btn-padding-x: 1.75rem; --bs-btn-font-size: 1.2rem;"><b>minecraft</b></button>
<a role="button" class="btn button-style btn-primary rounded-button-custom" href="https://rserver.uk/discord" style="--bs-btn-padding-y: 0.75rem; --bs-btn-padding-x: 1.75rem; --bs-btn-font-size: 1.2rem;"><b>discord</b></a>
</div>
<div class="modal fade" id="minecraft-modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content modal-style">
<div class="modal-header modal-style">
<h5 class="modal-title">Here's the server IP!</h5>
<button type="button" class="btn-close modal-button-style" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body" style="margin-top:-20px;">
<div class="input-group">
<input type="text" class="form-control modal-input-style" id="input-address" aria-describedby="button-copy-address" value="rserver.uk" readonly="readonly" onclick="this.select();">
<button class="btn btn-primary" type="button" id="button-copy-address" onclick="minecraftCopy()">Copy</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.1.slim.min.js" integrity="sha256-w8CvhFs7iHNVUtnSP0YKEg00p9Ih13rlL9zGqvLdePA=" crossorigin="anonymous"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>