-
Notifications
You must be signed in to change notification settings - Fork 3
/
leaderboard.php
66 lines (60 loc) · 1.66 KB
/
leaderboard.php
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
<!DOCTYPE html>
<html lang="en" class="content">
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"
/>
<link rel="stylesheet" href="Navigation-Clean.css" />
<link rel="stylesheet" href="footer.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<style>
.content {
text-align: center;
align-self: center;
font-family: Charcoal, sans-serif;
font-size: 130%;
margin: 0;
padding: 0;
max-width: 100%;
overflow-x: hidden;
}
body {
background-image: radial-gradient(circle, #292929, #2a2a2a, #2b2b2b, #2d2d2d, #2e2e2e, #2f2f2f, #303030, #313131, #323232, #323232, #333333, #343434);
margin: 0;
width: 100%;
padding: 0;
background-repeat: no-repeat;
}
img {
border-radius:20px;
}
#page-container {
position: relative;
min-height: 100vh;
}
</style>
<title>Leader Board | CCC</title>
</head>
<body>
<div id="page-container">
<header>
<?php include('navbar.php')?>
</header>
<div>
<br>
<?php include('leaderbinclude.php')?>
</div>
<?php include('footer.php')?>
</div>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>