-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dazecore.html
205 lines (173 loc) · 5.97 KB
/
Dazecore.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!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/windows7.png" type="image/x-icon">
<link rel="stylesheet" href="css/cursor2.css">
<link rel="stylesheet" href="css/reproductor1.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<title>No es el fin... aun</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Frutiger:wght@400;700&display=swap');
body {
font-family: 'Frutiger', sans-serif;
background: url(img/dzcr.png);
color: black;
text-align: center;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.window {
width: 500px;
background: rgba(19, 19, 19, 0.2);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.3);
overflow: hidden;
backdrop-filter: blur(10px);
}
.title-bar {
background: linear-gradient(to bottom, #0c0c0c75, #0e0d0dc0);
padding: 8px;
display: flex;
justify-content: space-between;
align-items: center;
color: white;
border-bottom: 1px solid #2a5b91;
}
.title-bar .title {
font-weight: bold;
font-size: 14px;
}
.title-bar .buttons {
display: flex;
}
.title-bar .buttons button {
width: 18px;
height: 18px;
margin-left: 5px;
border: none;
background: none;
cursor: pointer;
}
.title-bar .buttons button img {
width: 100%;
height: 100%;
}
.content {
padding: 20px;
color: white;
text-align: left;
}
.content h1 {
font-size: 18px;
}
.content p {
font-size: 14px;
}
.button-group {
text-align: right;
margin-top: 20px;
}
.button-group button {
padding: 5px 10px;
margin-left: 10px;
border: 1px solid #b4b4b4;
background: rgba(72, 69, 207, 0.2);
border-radius: 3px;
cursor: pointer;
backdrop-filter: blur(5px);
}
.button-group button:hover {
background: rgba(49, 30, 155, 0.3);
}
.abstract-shape {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 300px;
background: linear-gradient(135deg, #1100ff, #00ffff);
opacity: 0.3;
transform: translate(-50%, -50%) rotate(45deg);
z-index: -1;
}
</style>
</head>
<body>
<div class="abstract-shape"></div>
<div class="window">
<div class="title-bar">
<span class="title">S A I K O R E</span>
<div class="buttons">
</div>
</div>
<div class="content">
<h2>Welcome to the Saikore Setup Wizard</h2>
<p>
This wizard will install the update package version 24.07.02r for SAIKORE 10.11 SP1 x86-x64 / 2024 R2
SP1
x64.
</p>
<p>
It is recommended to close all other applications before starting Setup. The installation can be
canceled.
</p>
<p>
To get the latest news and updates, visit the project page: <br><a href="SaikoWorld7.html">
<font color="white">https://███████████.███/</font>
</a>
</p>
<p>
Click "Install" to start the installation of updates, or "Cancel" to exit the program.
</p>
<div class="button-group">
<a href="Progreso.html">
<button>
<font color="white">Install</font>
</button>
</a>
<a href="AeroFrutasMain.html">
<button>
<font color="white">Cancel</font>
</button>
</a>
<p> </p>
<center>
<div class="container">
<audio></audio>
<h1>Song</h1>
<div id="current_time">0:00</div>
<div class="buttons">
<button id="prev">
<i class="fas fa-backward"></i>
</button>
<button id="play">
<i class="fas fa-play"></i>
</button>
<button id="next">
<i class="fas fa-forward"></i>
</button>
</div>
<div id="current_audio"></div>
<div class="progress_container">
<div id="progress"></div>
</div>
</div>
<script src="Scripts/reprodzcr.js"></script>
</center>
</div>
</div>
</div>
</body>
</html>