-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathulud.html
132 lines (101 loc) · 2.03 KB
/
ulud.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
<!DOCTYPE html>
<html lang="">
<head>
<title> Evolution Guide - Ulud Roars</title>
<link rel="icon" type="image/x-icon" href="imgs/favicon.ico">
<style>
body {
background-color:#292929;
overflow-y: hidden;
margin: 0px;
}
@-webkit-keyframes bg-slide {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.disable-select {
user-select: none; /* supported by Chrome and Opera */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
}
.bg {
width: 200%;
background-image: url("imgs/grid.png") ;
position:absolute;
top: 0;
bottom: 0;
left: 0;
animation: bg-slide 100s linear infinite;
}
.wrapper {
position:relative;
width: max-content;
height: 100vh;
overflow:hidden;
}
.content {
position: relative;
text-align: center;
font-size: 26px;
color: #000;
}
.svgText {
pointer-events: none;
}
.encarte {
position: fixed;
z-index:10;
top:32px;
left:32px;
width:20vw;
}
.encarte img {
height: 100%;
width: 100%;
transition: 0.3s;
}
.encarte img:hover {
height: 100%;
width: 100%;
filter: drop-shadow(0 0 0.75rem rgb(255, 255, 255));
}
.seal {
position: fixed;
z-index:10;
bottom:32px;
left:32px;
width:10vw;
filter: opacity(50%);
transition: 0.3s;
}
.seal img {
height: 100%;
width: 100%;
}
.seal:hover {
filter: opacity(100%);
}
</style>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div class="wrapper">
<div class="bg">
</div>
<div class="content">
<object class="svgText" style="height:100vh;" data="Diagrama.svg"></object>
</div>
</div>
<div class="encarte">
<a href="https://ko-fi.com/aderek" target="_blank"><img src="imgs/Holder.png"></a>
</div>
<div class="seal">
<a href="https://twitter.com/AderekArt" target="_blank"><img src="imgs/seal.png"></a>
</div>
<script>
</script>
</body>
</html>