-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (78 loc) · 2.77 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
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #212121;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
h1,h4,h6 {
margin-bottom: 10px;
text-align: center;
}
.ver {
text-align: left;
}
#wrapper {
height:100%;
margin:auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.block {
width:200px;
background-color: rgba(255, 255, 255, 0.5);
padding: 20px;
border-radius: 15px;
}
.block * {
margin-bottom: 5px;
}
a {
color:white;
text-decoration: none;
}
#script-bar {
display: flex; justify-content: center; align-items: center; width: 100vw; max-width: 100%; height: 100px; margin-bottom:50px;
}
#script-bar a {
margin: 0 10px;
}
</style>
</head>
<body>
<div id="wrapper">
<div style="margin-bottom: 50px;">
<h1>Секретное хранилище Аристокрафт Studios</h1>
<h4>a.k.a Самый уродливый сайт в интернете</h4>
<h4>Но здесь вы можете скачать некоторые мои наработки:</h4>
</div>
<div id="script-bar">
<a href="files/itemgen.mel">
<div class="block">
<h3>ItemGen.mel</h3>
<h6 class="ver">ver. 1.1</h6>
<p>Скрипт для генерации моделей айтемов из майнкрафт текстур</p>
</div>
</a>
<a href="files/grasser.mel">
<div class="block">
<h3>Grasser.mel</h3>
<h6 class="ver">ver. 1.0</h6>
<p>Скрипт для автоматической анимации качающейся травы.</p>
</div>
</a>
</div>
<footer style="display:flex; justify-content: center; align-items: center; flex-direction: column;">
<span style="margin-bottom:10px;">Перед тем как что либо скачивать, пожалуйста прочитайте: <a href="license.txt" target="_blank" style="text-decoration:underline;">Условия использования</a></span>
<span>По любым вопросам: <a href="https://vk.com/etoshapovalov" target="_blank" style="text-decoration:underline;">VK</a></span>
</footer>
</div>
</body>
</html>