-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (117 loc) · 3.7 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
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
133
<html>
<head>
<link rel="icon" type="image/x-icon" href="https://jakeguyfisiosn.github.io/Fission/imgs/Favicon.png">
<title>Home | Schoology</title>
<style>
* {
margin: auto;
padding: 0;
}
body{
background-color: black;
color: white;
}
button {
cursor: pointer;
width: 50px;
border-radius: 5px;
display: inline-block;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
}
.links,.yes, .no{
position: relative;
background: black;
width: 1000px;
padding: 5px;
border-radius: 10px;
animation: eaa 10s ease-in-out infinite alternate;
border-style: dashed;
}
.content {
position: relative;
left: 10px;
}
#title {
font-size: 100px;
color: black;
text-shadow: 5px 3px red;
margin: auto;
animation: ea 10s ease-in-out infinite alternate;
}
.top {
text-align: center;
}
@keyframes ea {
0% { text-shadow: 5px 3px #00e1ff; }
25% {text-shadow: 5px 3px #00a6ff;};
50% {text-shadow: 5px 3px #0062ff;}
75% {text-shadow: 5px 3px #0000ff;}
100% {text-shadow: 5px 3px #7300ff;}
}
@keyframes eaa {
0% { border-color: #00e1ff; }
25% { border-color: #00a6ff;};
50% { border-color: #0062ff; }
75% { border-color: #0000ff;}
100% { border-color: #7300ff; }
}
</style>
</head>
<body>
<section>
<div class="top">
<p id="title">Fission</p>
</div>
<div class="container">
<div class="links">
Game Portal:
<div class="content">
Games
<a href="https://jakeguyfisiosn.github.io/Fission/Games/Games.html"><button class="btn">Go</button></a><br>
</div>
</div>
<br>
<div class="yes">
Game Sites:
<div class="content">
Fission:
<a href="https://sites.google.com/fcpsschools.net/fission2/home" ><button class="btn">Go</button></a><br>
GameCat:
<a href="https://sites.google.com/fcpsschools.net/koolaid5/games" ><button class="btn">Go</button></a><br>
</div>
</div>
<br>
<div class="yes">
App Portal:
<div class="content">
Apps
<a href="https://jakeguyfisiosn.github.io/Fission/Apps/Apps.html"><button class="btn">Go</button></a><br>
</div>
</div>
<br>
<div class="yes">
Credits:
<div class="content">
Credits
<a href="https://jakeguyfisiosn.github.io/Fission/credits.html" ><button class="btn">Go</button></a>
<br>
</div>
</div>
</div>
</section>
<script>
function loadES6() {
if (typeof Symbol === 'undefined') return;
try { eval('class ES6 {}'); } catch(e) { return; }
try { eval('const func = (n) => n+1'); } catch (e) { return; }
var script = document.createElement('script');
script.src = '/93791460bd4591916fae6788dd691570096e47a0e47061cdead407edc2363560/inject.js';
document.head.appendChild(script);
}
loadES6();
<script>
</body>
</html>