-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/toastr.min.css" rel="stylesheet">
<link href="css/global.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/toastr.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/konami.min.js"></script>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'/>
<title>WL Cat Club</title>
</head>
<style>
body {
font-family: 'Roboto', sans-serif;
}
.row {
margin-right: 0 !important;
margin-left: 0 !important;
}
.navbar-dark.bg-dark {
background-color: #000 !important;
}
</style>
<script>
$(function() {
$('[data-anchor]').click(function(){
var id = $(this).attr('data-anchor');
$(id).scrollTo();
});
});
function mit() {
color = ['red', 'green', 'blue'];
counter = 0;
setInterval(function(){
$('.row').css('background-color', color[counter]);
counter++;
if (counter == 3) {
counter = 0;
}
}, 1000);
}
$(function () {
$(document).on('keyup',
Konami.code(function() {
setTimeout(function(){
mit();
}, 250);
})
);
});
</script>
<body style="overflo-x: hidden;padding-top:56px">
<div class="fluid-container">
<div class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">WL Cat Club</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-atrget="#navcollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#">Ur Grey</a>
</li>
</ul>
</div>
</div>
<div class="row" style="background-color: #fff;height: 94VH">
<div class="col d-flex flex-column" style="justify-content: space-around; align-items: center; text-align: center;">
<center><h1 style="color:black;text-align:center;font-size:900%">WL Cat Club</h1></center>
</div>
</div>
<div class="row" style="background-color: #fff;height: 94VH">
<div class="col d-flex flex-column" style="justify-content: space-around; align-items: center; text-align: center;">
<center><h1 style="color:black;text-align:center;font-size:900%">WL Cat Club</h1></center>
</div>
</div>
</div>
</body>
</html>