Skip to content

Commit 279516d

Browse files
authored
Merge pull request ligmitz#10 from lucifer1708/useless_hai_delete_kr_dena
rules and leaderboard & BG
2 parents c4107a2 + 8eecbff commit 279516d

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

db.sqlite3

0 Bytes
Binary file not shown.

templates/base.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@
4747
position: absolute;
4848
top: 0;
4949
left: 0;
50-
width: 100vw;
50+
width:100%;
5151
z-index: -999;
5252
}
5353
.background img{
54-
width: 100%;
54+
width:100vw;
55+
height:100vh;
5556
}
5657
.img-responsive {
5758
margin: 0 auto;

templates/leaderboard.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h2 class="standings-head" style="color: var(--green);">Leaderboard</h2>
4747
{% for user in queryset %}
4848

4949
<tbody>
50-
<tr style="background-color: var(--gray); color: var(--green);" class="table_content" id="{{forloop.counter}}">
50+
<tr style=" background-color: var(--gray); color:#ffffff;" class="table_content" id="{{forloop.counter}}">
5151
<td>{{forloop.counter}}</td>
5252
<td data-toggle="tooltip" title="{{user.profile.get_name}}"><span>{{user.username}}</span></td>
5353
<td>{{user.profile.get_level}}</td>
@@ -57,7 +57,7 @@ <h2 class="standings-head" style="color: var(--green);">Leaderboard</h2>
5757
{%endfor%}
5858
</table>
5959
{% else %}
60-
<div style="color: var(--green);font-size: 4vh;text-align:center" class="not_yet">
60+
<div style="backdrop-filter:blur(10px); padding:10px 10px 10px 10px; border-radius:15px; color:#ffffff; font-size: 4vh;text-align:center" class="not_yet">
6161
Leader board will be active once the hunt starts!
6262
<p style="font-size: 5vh; color:#fff;" id="demo"></p>
6363
</div>
@@ -84,7 +84,7 @@ <h2 class="standings-head" style="color: var(--green);">Leaderboard</h2>
8484
})
8585

8686
//Timer
87-
var countDownDate = new Date("Feb 28, 2022 18:00:00").getTime();
87+
var countDownDate = new Date("Feb 24, 2022 18:00:00").getTime();
8888

8989
// Update the count down every 1 second
9090
var x = setInterval(function() {
@@ -116,4 +116,4 @@ <h2 class="standings-head" style="color: var(--green);">Leaderboard</h2>
116116
</script>
117117

118118

119-
{% endblock %}
119+
{% endblock %}

templates/rules.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
color: var(--white);
2121
}
2222
.li-link:hover{
23-
color: yellow;
24-
text-decoration: none;
25-
font-size: 3rem;
23+
color: white;
2624
}
2725
</style>
2826
<div class="col-md-12">
@@ -32,10 +30,10 @@ <h2 style="color: var(--green);"> Rules </h2>
3230
<hr>
3331
<ul type="dot" class="guidelines">
3432
<li>
35-
The <strong>Hunt</strong> will begin on 29<sup>th</sup> December, 2021 6 PM.
33+
The <strong>Hunt</strong> will begin on 24<sup>th</sup> February, 2022 18:00.
3634
</li>
3735
<li>
38-
The username for registration should be of the following format <strong>rollNo_name</strong>. <br>Eg: 20bcs102_deepak.
36+
The username for registration should be of the following format <strong>rollNo_name</strong>. <br>Eg: 21bma003_mehul.
3937
</li>
4038
<li>
4139
Use the institute email address for registration.
@@ -50,7 +48,7 @@ <h2 style="color: var(--green);"> Rules </h2>
5048
For any queries: <a href="https://wa.me/918894957166" target="_blank" class="li-link">8894957166</a> </li>
5149

5250
<li>
53-
Please read the storyline and questions very carefully.
51+
Please read the question very carefully.
5452
</li>
5553
</ul>
5654
</div>

0 commit comments

Comments
 (0)