-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
106 lines (99 loc) · 2.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tuladha Jejeg</title>
</head>
<body>
<div class="container">
<div class="tuladha">
<a href="https://github.com/akufadhl/Tuladha-Jejeg-OT">ꦠꦸꦭꦣꦗꦼꦗꦼꦒ꧀<br>ꦎꦥꦼꦤ꧀ꦠꦻꦥ꧀</a>
</div>
<div class="logo">
<a href="https://sites.google.com/site/jawaunicode/home" lang="jv" class="wihananto">ꦫꦱꦮ</a>
<a href="https://www.akufadhl.com" lang="jv" class="akufadhl">ꦄ</a>
</div>
</div>
</body>
<style>
@font-face {
font-family: 'Tuladha Jejeg';
src: url('./fonts/otf/TuladhaJejegOT-Regular.otf');
}
@font-face {
font-family: 'akufadhl';
src: url('./akufadhl-Regular.woff2'),
url('./akufadhl-Regular.woff');
}
* {
margin: 0;
padding: 0;
}
a {
all: unset;
}
a:hover {
cursor: pointer;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
font-family: 'Tuladha Jejeg';
font-size: calc(7vw + 5px);
}
.tuladha {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
text-align: center;
}
.tuladha>a:hover {
color: rgb(104, 53, 255);
animation: changeColor 0.5s;
}
.logo {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
font-size: 0.5em;
gap: 1.2em;
margin-top: 1em;
color: rgb(104, 53, 255);
}
.wihananto {
/* set opentype feature of cv01 */
font-feature-settings: "cv01" on;
}
.akufadhl {
font-family: 'akufadhl';
}
.wihananto:hover, .akufadhl:hover {
animation: moveUp 1s infinite;
}
@keyframes moveUp {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}
@keyframes changeColor {
0% {
color: black;
}
50% {
color: rgb(104, 53, 255);
}
}
</style>
</html>