forked from opencodeiiita/Opencode-20-LeaderBoard-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (90 loc) · 3.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<title>Opencode'20 leaderboard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.css">
<script type="text/javascript" src="./css/bootstrap.bundle.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="shortcut icon" href="https://opencodeiiita.github.io/dist/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<style>
@media (max-width: 401px) {
#top5 img {
width: 4em!important;
height: 4em!important;
}
#top5 > .col {
padding: 5px!important;
}
}
</style>
</head>
<body class="display-4">
<div class=navbar>
<a href="index.html">
<i class="material-icons" style="font-size:45px; color:black">home</i>
</a>
<a href="search.html">
<i class="material-icons" style="font-size:45px; color:black">search</i>
</a>
</div>
<div class="container">
<center>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<span><img class="header__logo" src="img/Leaderboard.png" width="85%" length="80%"></span>
</div>
</div>
</center>
<div class="jumbotron-fluid" id="top5head">
<div class="container d-flex align-content-stretch flex-wrap">
<!-- <divclass="d-flex align-content-stretch flex-wrap"> -->
<!-- <div class="row" id="top5" > -->
<!-- <div class="col-lg-2 col-sm-4 col-xs-6"> -->
<div id="first" style="padding: 10px;">
</div>
<!-- </div> -->
<!-- <div class="row-sm-2"> -->
<div id="second" style="padding: 10px;"></div>
<!-- </div> -->
<!-- <div class="row-sm-2"> -->
<div id="third" style="padding: 10px;"></div>
<!-- </div> -->
<!-- <div class="row-sm-2"> -->
<div id="fourth" style="padding: 10px;"></div>
<!-- </div> -->
<!-- <div class="row-sm-2"> -->
<div id="fifth" style="padding: 10px;"></div>
<!-- </div> -->
<!-- </div> -->
</div>
</div>
<!--
<div id="top5_leaders" class="d-flex align-content-stretch flex-wrap">
<div id = "top5" class="row" >
<div class="row row-lg-12 row-md-6 row-sm-3"> -->
<!-- <div class="row row-lg-3 " id="first" style="padding: 10px;"></div> -->
<!-- <div class="row row-lg-3 " id="second" style="padding: 10px;"></div>
<div class="row row-lg-3 " id="third" style="padding: 10px;"></div>
<div class="row row-lg-3 " id="fourth" style="padding: 10px;"></div>
<div class="row row-lg-3 " id="fifth" style="padding: 10px;"></div> -->
<!-- </div> -->
<!-- </div> -->
<!--
</div> -->
<div class="container d-flex align-content-stretch flex-wrap">
<center><div id="loader">
<img src="https://lingojam.com/img/loading_nice.gif" style="width: 15%;"/>
</div></center>
<table id="leaderboard" class="table table-success table-bordered table-hover border border-dark rounded w-100">
</table>
</div>
</div>
<script src="main.js"></script>
</body>
</html>