Skip to content

Commit

Permalink
🔗 Soulbond
Browse files Browse the repository at this point in the history
  • Loading branch information
yvvki committed May 7, 2024
1 parent dc08a22 commit 6174311
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,67 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Kekkon Nexus</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+Javanese:wght@400..700&family=Recursive:wght,CASL@300..1000,1&display=swap"
rel="stylesheet">

<style>
:root {
color-scheme: light dark;

font-family: "Recursive", "Noto Sans JP", "Noto Sans Javanese", sans-serif;
font-optical-sizing: auto;
}

body {
margin: 0;
width: 100%;
height: 100vh;

color: light-dark(#333b3c, #efefec);
background-color: light-dark(#efedea, #223a2c);

display: flex;
align-items: center;
justify-content: center;
}

header {
display: flex;
flex-flow: column;
align-items: center;
}

h1 {
font-weight: 700;
}

.upright {
writing-mode: vertical-lr;
}
</style>
</head>

<body>
<h1>Hello, World!</h1>
<header>
<h1 class="upright">
<ruby>
結ꦲꦂꦠꦤ꧀ꦠ
<rt>
けっこん
</rt>
</ruby>
</h1>
<p>
Soulbond
</p>
</header>
</body>

</html>

0 comments on commit 6174311

Please sign in to comment.