Compare commits

...

3 Commits
master ... irl

Author SHA1 Message Date
Yuki 534944a8fe update site 2024-07-05 16:24:30 -04:00
Yuki 396a2a6d97 Ajout de liens 2023-12-13 10:06:33 -05:00
Yuki c132c86411 jules' irl website 2023-10-29 23:47:14 -04:00
6 changed files with 29 additions and 27 deletions

BIN
avatar.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
hackerslogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -5,36 +5,38 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rampart+One&family=Shantell+Sans:wght@400;600&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Shantell+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="styles.css">
<link rel="me" href="https://im-in.space/@Yuki"> <link rel="me" href="https://groupe-tazor.com/@Yuki">
<title>Yuki's website</title> <title>Julien Savard-Gagnon</title>
</head> </head>
<body> <body>
<main> <main>
<div id="logo" title="Obverse: the kanji for my name. It's unusual since this character shouldn't exist and is widely regarded as a mistake by the JIS. Reverse: a purple-haired anime girl with round glasses that claims to be me. She looks cute."> <div id="logo" title="C'est moi. Mais en dessin.">
<div id="logo-inner"> <div id="logo-inner">
<div id="logo-front"></div> <div id="logo-front"></div>
<div id="logo-back"></div> <div id="logo-back"></div>
</div> </div>
</div> </div>
<h1>Hi, I'm Yuki</h1> <h1>Julien Savard-Gagnon</h1>
<section>Programmer, writer, artist, casual hacker, average nerd, probably not in this order but sometimes at the same time</section> <section>Programmeur-analyste .NET/intégrateur web full-stack basé à Québec</section>
<h2>Portfolio</h2>
<ul> <ul>
<li><a href="https://a39.ca" title="A creative studio based in Québec City, Canada.">a39 studios</a></li> <li><a href="https://a39.ca" title="Un site web que j'ai créé.">a39 studios</a></li>
<li><a href="https://yukiis.moe" title="The life and tribulations of Yuki and Tsuki, a pair of foxgirls who have no idea of what they're doing.">horse life 98</a></li> <li><a href="https://barteksitar.com" title="Client: Bartek Sitar">bartek sitar</a></li>
<li><a href="https://toasters.rocks" title="Sometimes I write things.">toasters rocks</a></li> <li><a href="https://charlyyapo.com" title="Client: Charly Yapo">charly yapo and the radical band</a></li>
<li><a href="https://codewalr.us" title="A community of calculator hackers, game makers, and artists.">codewalrus</a></li> <li><a href="https://dansunegalaxie.ca" title="Un wiki pour ma série préférée.">dans une galaxie wiki</a></li>
<li><a rel="me" href="https://im-in.space/@Yuki" title="My main social media account. I don't really use any other social media aside from this one.">fediverse</a></li> <li><a href="https://yukiis.moe" title="Un webcomic.">horse life 98</a></li>
<li><a href="https://patreon.com/a39" title="Shut up and throw me money. Might send devlogs and exclusivities on my work in exchange.">patreon</a></li> <li><a href="https://toasters.rocks" title="Toasters Rocks: le blog">toasters rocks</a></li>
<li><a href="https://git.a39.ca/yuki" title="A repository of code I wrote. May contain sources for the above websites.">source code</a></li> <li><a href="https://膤.com" title="English version."></a></li>
<li><a href="mailto:yuki@a39.ca" title="If you ever need to send me email, but that's probably a last resort, I guess.">mailto</a></li> <li><a href="https://zabimage.com" title="Client: Zabimage">zabimage</a></li>
<li><a href="https://git.a39.ca/yuki" title="Tout mon code source que j'ai écrit est pas mal sur ce site.">code source</a></li>
<li><a href="https://github.com/juju2143" title="Tout mon code source que j'ai écrit est pas mal sur ce site. (2)">code source (2)</a></li>
<li><a href="mailto:juju2143@gmail.com" title="Si tu veux m'envoyer un email, vas-y, j'imagine.">mailto</a></li>
</ul> </ul>
<footer> <footer>
avatar by sutemo avatar par FrekkieMonster
<br/>website designed by Yuki <br/>créé et réalisé avec &lt;3 à Québec
<br/>want one like this? hit me up!
<br/>made with &lt;3 in Québec City, Canada
</footer> </footer>
</main> </main>
</body> </body>

View File

@ -56,23 +56,23 @@ main
height: 100%; height: 100%;
backface-visibility: hidden; backface-visibility: hidden;
-webkit-backface-visibility: hidden; -webkit-backface-visibility: hidden;
font-family: "Rampart One", sans-serif;
background-color: white; background-color: white;
color: black; color: black;
border-radius: 50%; border-radius: 50%;
box-shadow: 8px 8px 0px 2px black; box-shadow: 8px 8px 0px 2px black;
font-size: 160px; }
#logo-front
{
background: url("hackerslogo.png") white;
background-size: cover;
} }
#logo-back #logo-back
{ {
background: url("yuki.png") white; background: url("avatar.webp") white;
background-size: cover; background-size: cover;
transform: rotateY(180deg); transform: rotateY(180deg);
@supports (background-image: url("yuki.avif"))
{
background-image: url("yuki.avif");
}
} }
#logo-back video #logo-back video
@ -92,7 +92,7 @@ h1
ul ul
{ {
padding-left: 0; padding-left: 0;
margin-top: 3em; /*margin-top: 3em;*/
margin-bottom: 3em; margin-bottom: 3em;
} }

BIN
yuki.avif

Binary file not shown.

BIN
yuki.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB