-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
188 lines (167 loc) · 4.67 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="./images/cream.ico">
<title>Rico's Site of Stuff</title>
<style>
.container {
text-align: center;
}
.sliding-background {
background: url("./images/bg.png") repeat-x;
height: 560px;
width: 5076px;
animation: slide 60s linear infinite;
}
.button {
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.b0 {
border: 4px solid white;
color: white;
background-color: #808080;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
}
.button1 {
background-color: white;
color: red;
border: 2px solid red;
}
.button1:hover {
background-color: red;
color: white;
}
.button2 {
background-color: white;
color: #FF8000;
border: 2px solid #FF8000;
}
.button2:hover {
background-color: #FF8000;
color: white;
}
.button3 {
background-color: white;
color: yellow;
border: 2px solid yellow;
}
.button3:hover {
background-color: yellow;
color: white;
}
.button4 {
background-color: white;
color: lime;
border: 2px solid lime;
}
.button4:hover {
background-color: lime;
color: white;
}
.button5 {
background-color: white;
color: cyan;
border: 2px solid cyan;
}
.button5:hover {
background-color: cyan;
color: white;
}
.button6 {
background-color: white;
color: blue;
border: 2px solid blue;
}
.button6:hover {
background-color: blue;
color: white;
}
.button7 {
background-color: white;
color: #8000FF;
border: 2px solid #8000FF;
}
.button7:hover {
background-color: #8000FF;
color: white;
}
.button8 {
background-color: white;
color: magenta;
border: 2px solid magenta;
}
.button8:hover {
background-color: magenta;
color: white;
}
.button9 {
background-color: black;
color: blue;
border: 2px solid magenta;
}
.button9:hover {
background-color: black;
color: magenta;
}
</style>
</head>
<body>
<div class="container">
<h1 class="b0">The RicoAnimations Site</h1>
</div>
<div class="container">
<h1 class="b0">NOTE: I will be discontinuing from The RicoAnimations Site and making proxies from this point on. I will no longer be affiliated with proxies.</h1>
</div>
<div class="container">
<a href="./projects.html">
<button class="button button1">My Projects</button>
</a>
</div>
<div class="container">
<a href="./games.html">
<button class="button button2">My Games</button>
</a>
</div>
<div class="container">
<a href="./about.html">
<button class="button button3">About Me</button>
</a>
</div>
<div class="container">
<a href="./socials.html">
<button class="button button4">Credits and My Socials</button>
</a>
</div>
<div class="container">
<a href="./announcements.html">
<button class="button button5">Announcements</button>
</a>
</div>
<div class="container">
<a href="./other.html">
<button class="button button6">Other</button>
</a>
</div>
<div class="container">
<h3 class="b0">Version of Site: 1.0 Beta</h3>
</div>
</body>
</html>