-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleaderboard.html
115 lines (107 loc) · 3.29 KB
/
leaderboard.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
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leaderboard</title>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merienda+One" />
<link href="https://fonts.cdnfonts.com/css/chiller" rel="stylesheet">
<style>
body
{
height:700px;
background-image: url("istockphoto-1290801796-612x612.jpg");
background-size:cover ;
background-color: rgb(67, 8, 138);
display:grid ;
grid-template-columns: 1fr 1fr;
}
.container
{
font-family:"Chiller",sans-serif ;
display:grid;
justify-self: center;
justify-content: center;
align-self: center;
align-content: center;
margin-top: 100px;
grid-template-rows:60px 60px 60px 60px 60px 60px 60px 60px;
grid-column-start: 1;
grid-column-end: 3;
min-width:600px;
}
.header
{ background-color: rgba(240, 248, 255, 0);
display:grid;
width:130%;
align-content: center;
justify-self: center;
grid-column-start: 1;
grid-column-end: 3;
grid-template-columns:1fr 10fr 3fr ;
color:white;
font-family: 'Merienda One';
}
.row
{ background-color: rgba(240, 248, 255, 0.195);
border-radius: 5px;
align-content: center;
width: 130%;
color:white;
font-family: 'Merienda One';
margin:5px;
display:grid;
grid-column-start: 1;
justify-self: center;
grid-column-end: 3;
grid-template-columns:1fr 10fr 3fr ;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="heading">
No
</div>
<div class="heading">
Name
</div>
<div class="heading">
Points
</div>
</div>
<div class="row">
<div class="data">
1
</div>
<div class="data">
Shashank baradwaj
</div>
<div class="data">
3000
</div>
</div>
<div class="row">
2
</div>
<div class="row">
3
</div>
<div class="row">
4
</div>
<div class="row">
5
</div>
<div class="row">
6
</div>
<div class="row">
7
</div>
</div>
</body>
</html>