This repository was archived by the owner on Aug 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.96 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<title>JG_API Documentation Hub</title>
</head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
background-color: #3C3E48;
height: 100%;
font-family: 'Roboto', sans-serif;
}
.brand {
height: 100%;
width: 100%;
}
.guilded-btn {
color: #1d1f24;
background-image: linear-gradient(to right, #ffb400, #e4c519, #edd75c);
padding: 20px 0 20px 0;
}
.guilded-btn:hover {
color: #1d1f24;
box-shadow: 0 0 10px 0 rgb(255 234 0 / 50%);
}
.container-fluid {
margin-top: 30px;
}
.col-lg-4 {
margin-bottom: 30px !important;
}
</style>
<body>
<div class="container-fluid">
<div class="row justify-content-center text-center" id="main-row">
<div class="col-4 my-auto">
<a class="btn w-50 btn-lg guilded-btn" href="https://docs.jgapi.dev/javadoc" target="_self">Javadoc</a>
</div>
<div class="col-4 my-auto">
<img src="assets/branding/badgadi.png" class="brand">
</div>
<div class="col-4 my-auto">
<a class="btn w-50 btn-lg guilded-btn" href="https://github.com/JGAPI/JG_API/wiki" target="_self">Documentation</a>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</html>