-
Notifications
You must be signed in to change notification settings - Fork 0
/
creator.html
132 lines (120 loc) · 3.02 KB
/
creator.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
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700" rel="stylesheet">
<!--<link href="main.css" rel="stylesheet">-->
<link href="animate.css" rel="stylesheet">
<script>
function navOnClick(URL) {
setTimeout(function() {window.location = URL}, 1100);
}
</script>
<style>
body {
margin:0;
font-family:Roboto, Arial;
background-color:#FFFFFF;
}
.main {
margin-left:15%;
margin-right:15%;
background-color:#FFFFFF;
}
.navbar {
margin:0;
padding:0;
background-color:#00596F;
overflow:hidden;
list-style-type:none;
}
.navbar li {
float:left;
}
.navbar li a:not(.currentPage) {
display:block;
padding-top:20px;
padding-bottom:20px;
padding-left:15px;
padding-right:15px;
color:#FFFFFF;
text-decoration:none;
text-align:center;
background-color:#00596F;
background:linear-gradient(to bottom,#00596F 50%,#018EAA 50%);
background-size:100% 200%;
background-position:0% 0%;
}
.navbar li a:hover:not(.currentPage) {
background-position:0% 100%;
-webkit-transition:all 1s ease;
transition:all 1s ease;
}
.currentPage {
display:block;
padding-top:20px;
padding-bottom:20px;
padding-left:15px;
padding-right:15px;
color:#FFFFFF;
text-decoration:none;
text-align:center;
background-color:#018EAA;
}
footer {
font-size:75%;
margin-top:20px;
text-align:center;
}
@-webkit-keyframes fadeInUp {
from {
opacity:0;
-webkit-transform:translate3d(0,100%,0);
transform:translate3d(0,100%,0);
}
to {
opacity:1;
-webkit-transform:translate3d(0,0,0);
transform:translate3d(0,0,0);
}
}
@keyframes fadeInUp {
from {
opacity:0;
-webkit-transform:translate3d(0,100%,0);
transform:translate3d(0,100%,0);
}
to {
opacity:1;
-webkit-transform:translate3d(0,0,0);
transform:translate3d(0,0,0);
}
}
.fadeInUp {
-webkit-animation-name:fadeInUp;
animation-name:fadeInUp;
-webkit-animation-duration:2s;
animation-duration:2s;
-webkit-animation-fill-mode:both;
animation-fill-mode:both;
}
</style>
<title>Creator</title>
</head>
<body>
<ul class="navbar">
<li><a href="javascript:navOnClick('explore.html')">Explore</a></li>
<li><a href="javascript:navOnClick('events.html')">Events</a></li>
<li><a href="javascript:navOnClick('dashboard.html')">Dashboard</a></li>
<li><a class="currentPage" href="creator.html">Creator</a></li>
<li><a href="javascript:navOnClick('about.html')">About</a></li>
<li style="float:right"><a href="account.html">WhiteHoodHacker</a></li>
</ul>
<div class="main fadeInUp">
<h1>Creator</h1>
<p>Welcome back, WhiteHoodHacker!</p>
<footer>Copyright (C) 2018-2019 CPDiscord Development Team.</footer>
</div>
</body>
</html>