-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspace.html
115 lines (113 loc) · 2.38 KB
/
space.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>
<head>
<title>I. Stellar & Co. - Space</title>
<style>
ul {
list-style-type: none;
margin: 0px;
padding: 0;
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
font-weight: normal;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #1A72E9;
}
.load {
text-align: center;
}
button1:focus {outline:0;}
button:focus {outline:0;}
body {
color: #1A72E9;
font-weight: 1000;
font-family: sans-serif;
position: relative;
left: -8px;
}
button {
background-color: #1A72E9;
color: white;
margin: 5px;
transition-duration: 0.5s;
border-radius: 12px;
border: 2px solid #1A72E9;
padding: 10px 15px;
}
button:hover {
background-color: white;
color: #1A72E9;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.button1 {
background-color: #1A72E9;
color: white;
margin: 5px;
transition-duration: 0.5s;
border-radius: 12px;
border: 2px solid #1A72E9;
padding: 10px 15px;
}
.button1:hover {
background-color: white;
color: #1A72E9;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.button1 span {
cursor: pointer;
display: inline-block;
position: relative;
transition-duration: 0.5s;
}
.button1 span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
}
.button1:hover span {
padding-right: 25px;
transition-duration: 0.5s;
}
.button1:hover span:after {
opacity: 1;
right: 0;
}
.game {
top: 50px;
position: relative;
}
</style>
</head>
<body>
<div id="nav">
<ul>
<li><a href="/JS-Clicker/index.html">Resources</a></li>
<li><a href="/JS-Clicker/research.html">Research</a></li>
<li><a class="active" href="/JS-Clicker/space.html">Space</a></li>
<li><a href=""></a></li>
<li style="float:right"><a href="">Achievements</a></li>
<li style="float:right"><a href="#about">Settings</a></li>
<li style="float:right"><a href="#about">Join the Discord!</a></li>
</ul>
</div>
</body>
</html>