init
This commit is contained in:
commit
33f59ecb62
Binary file not shown.
After Width: | Height: | Size: 862 KiB |
|
@ -0,0 +1,163 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.floating {
|
||||
animation-name: floating;
|
||||
animation-duration: 3s;
|
||||
animation-direction: alternate-reverse;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes floating {
|
||||
0% {
|
||||
transform: translate(0, 15px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(0, -15px);
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-family: 'Lucida Console', monospace;
|
||||
background-image: url('background.jpg');
|
||||
background-size: cover
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
gap: 100px;
|
||||
justify-content: left;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.column-1 {
|
||||
margin-top: -10%;
|
||||
filter: drop-shadow(5px 5px 24px #252525);
|
||||
flex-shrink: 2;
|
||||
}
|
||||
|
||||
.column-2 {
|
||||
font-size: xx-large;
|
||||
background-color: #29081cbb;
|
||||
padding: 1rem;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
|
||||
body {
|
||||
align-content: start;
|
||||
margin: auto;
|
||||
background-image: url('reisen-transparent.png');
|
||||
}
|
||||
|
||||
.column-1 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.row {
|
||||
gap: 0;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.column-2 {
|
||||
font-size: inherit;
|
||||
background-size: cover;
|
||||
margin: auto;
|
||||
background-color: #181818ea;
|
||||
}
|
||||
}
|
||||
|
||||
.table {
|
||||
display: flex;
|
||||
flex-flow: column nowrap;
|
||||
margin: 0.5rem;
|
||||
line-height: 1.5;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.td {
|
||||
justify-content: left;
|
||||
}
|
||||
|
||||
.td>.td-url {
|
||||
padding-left: 15%;
|
||||
}
|
||||
|
||||
.tr {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 190%;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #ffcccc
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="row">
|
||||
<div class="column-1">
|
||||
<img src="reisen-transparent.png">
|
||||
</div>
|
||||
<div class="column-2">
|
||||
<h2 class="floating">Reisen Church</h2>
|
||||
<p>Welcome to NaiJi's personal page!</p>
|
||||
<div class="table">
|
||||
<div class="tr">
|
||||
<div class="td"><img src="git.png" class="icon"></div>
|
||||
<div class="td-url"><a href="https://git.reisen.church/"">NaiJi</a></div>
|
||||
</div>
|
||||
<div class=" tr">
|
||||
<div class="td"><img src="matrix.png" class="icon"></div>
|
||||
<div class="td-url"><a href=" https://matrix.org/"">@naiji:inex.rocks</a></div>
|
||||
</div>
|
||||
<div class=" tr">
|
||||
<div class="td"><img src="xmpp.png" class="icon"></div>
|
||||
<div class="td-url"><a href="https://xmpp.org/">naiji_is_also_on@404.city</a></div>
|
||||
</div>
|
||||
<div class="tr">
|
||||
<div class="td"><img src="mal.png" class="icon"></div>
|
||||
<div class="td-url"><a href="https://myanimelist.net/profile/NaiJi">NaiJi</a></div>
|
||||
</div>
|
||||
<div class="tr">
|
||||
<div class="td"><img src="vndb.png" class="icon"></div>
|
||||
<div class="td-url"><a href="https://vndb.org/u137511">touhou-lurker</a></div>
|
||||
</div>
|
||||
<div class="tr">
|
||||
<div class="td"><img src="listenbrainz.png" class="icon"></div>
|
||||
<div class="td-url"><a href="https://listenbrainz.org/user/NaiJi/stats/?range=all_time">NaiJi</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<p>Send your prayers to <a href="https://en.touhouwiki.net/wiki/Reisen_Udongein_Inaba">Reisen</a>!</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 783 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
Loading…
Reference in New Issue