-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinimalSaikore.html
141 lines (124 loc) · 3.86 KB
/
MinimalSaikore.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
<!DOCTYPE html>
<html>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FWT5QJ8WJC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FWT5QJ8WJC');
</script>
<head>
<link rel="shortcut icon" href="img/w10i.png" type="image/x-icon">
<title>Saikore v10.11</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap');
body {
font-family: 'Segoe UI', sans-serif;
background: url(img/w10.png);
color: #c4c1c1;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-size: cover;
background-position: center;
}
.container {
background: rgb(0, 0, 0);
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
overflow: hidden;
text-align: center;
width: 80%;
max-width: 600px;
padding: 20px;
}
.title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.subtitle {
font-size: 18px;
margin-bottom: 20px;
}
.icon-container {
display: flex;
justify-content: space-around;
margin-bottom: 30px;
}
.icon {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: #0078d7;
}
.icon img {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
.icon span {
font-size: 14px;
}
.button-group {
display: flex;
justify-content: center;
margin-top: 20px;
}
.button-group button {
padding: 10px 20px;
margin: 0 10px;
border: none;
background: #0078d7;
color: white;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
.button-group button:hover {
background: #005a9e;
}
.footer {
margin-top: 20px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<div class="title">Welcome to Saikore v10.11</div>
<div class="subtitle">Bienvenido!</div>
<div class="icon-container">
<a href="Watchlist.html" class="icon">
<img src="https://www.meme-arsenal.com/memes/4728d163055a9cee5e597011963833da.jpg" alt="???">
<span>Watchlist</span>
</a>
<a href="Parte2/sadsatan.html" class="icon">
<img src="img/ss.jpg" alt="Sad Satan">
<span>Sample Text</span>
</a>
<a href="SaikoWorld8.html" class="icon">
<img src="https://via.placeholder.com/50?text=%3F%3F%3F" alt="???">
<span>???</span>
</a>
<a href="BW10.html" class="icon">
<img src="https://pbs.twimg.com/media/CjZ_MLpUgAEPY01.png" alt="Hotto Dogu">
<span>Hotto Dogu</span>
</a>
</div>
<div class="button-group">
<a href="Parte2/retropon.html">
<button>続く. . .</button>
</a>
</div>
<a href="AeroFrutasMain.html">
<div class="footer">Downgrade...</div>
</a>
</div>
</body>
</html>