Skip to content

Commit f17b99b

Browse files
committed
temp
1 parent 1e4dbb3 commit f17b99b

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed

docs/educhology-logo.png

30.4 KB
Loading

docs/index.html

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,47 @@
1-
EduchologyPlus
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<title>Logo</title>
7+
<style>
8+
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
9+
10+
html, body {
11+
height: 100%;
12+
width: 100%;
13+
background: #ffffff;
14+
overflow: hidden;
15+
}
16+
17+
body {
18+
display: flex;
19+
align-items: center;
20+
justify-content: center;
21+
}
22+
23+
.logo {
24+
opacity: 0;
25+
transform: translateY(12px);
26+
animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
27+
}
28+
29+
@keyframes fadeUp {
30+
to { opacity: 1; transform: translateY(0); }
31+
}
32+
33+
.logo img {
34+
max-width: 300px;
35+
max-height: 300px;
36+
width: auto;
37+
height: auto;
38+
display: block;
39+
}
40+
</style>
41+
</head>
42+
<body>
43+
<div class="logo">
44+
<img src="educhology-logo.png" alt="Logo" />
45+
</div>
46+
</body>
47+
</html>

0 commit comments

Comments
 (0)