-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor.html
More file actions
114 lines (94 loc) · 1.9 KB
/
editor.html
File metadata and controls
114 lines (94 loc) · 1.9 KB
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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Scaty Editor</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: Arial, sans-serif;
}
/* Hareketli mor arkaplan */
body {
background: linear-gradient(270deg, #6a00ff, #b84dff, #4b00c8);
background-size: 600% 600%;
animation: bgMove 10s ease infinite;
color: white;
}
@keyframes bgMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.container {
max-width: 1400px;
margin: auto;
padding: 30px 10px;
text-align: center;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
/* Büyük resim */
.preview {
width: 95%;
max-width: 1200px;
border-radius: 20px;
box-shadow: 0 0 40px rgba(0,0,0,0.6);
margin-bottom: 40px;
}
/* İndirme alanı */
.download-box {
background: rgba(0,0,0,0.4);
border-radius: 18px;
padding: 30px;
max-width: 900px;
margin: auto;
}
.download-box h2 {
color: #ffd6ff;
margin-top: 0;
}
/* İndir butonu */
.download-btn {
margin: 25px 0;
padding: 16px 36px;
font-size: 20px;
border: none;
border-radius: 12px;
cursor: pointer;
background: white;
color: #5a00d6;
font-weight: bold;
}
.download-btn:hover {
background: #eadbff;
}
.download-box ol {
font-size: 20px;
line-height: 1.8;
text-align: left;
}
</style>
</head>
<body>
<div class="container">
<h1>Scaty Editor</h1>
<!-- Büyük görsel -->
<img src="resim.png" alt="Scaty Editor" class="preview">
<!-- İndirme bölümü -->
<div class="download-box">
<h2>Scaty Editor</h2>
<!-- İNDİR BUTONU -->
<a href="scatyeditorsetup.exe" download>
<button class="download-btn">İndir</button>
</a>
</ol>
</div>
</div>
</body>
</html>