Social links.

This commit is contained in:
Kaj Forney 2022-12-06 06:46:01 -07:00
parent 820681dab2
commit e8fa590313
Signed by: kforney
GPG key ID: 3AB4E2E04CEF656F
2 changed files with 62 additions and 1 deletions

View file

@ -167,6 +167,13 @@ iframe[src*=itch]
color: #FFBC42; color: #FFBC42;
} }
.navbar-text {
font-family: VT323;
font-size: 36px;
src: url("/fonts/VT323-Regular.ttf");
color: #78a1bb;
}
.card { .card {
background-color: RGBA(22, 26, 37, 70%); background-color: RGBA(22, 26, 37, 70%);
border-radius: 30px; border-radius: 30px;

View file

@ -22,6 +22,8 @@
<meta name="theme-color" content="#fafafa"> <meta name="theme-color" content="#fafafa">
<script src="https://kit.fontawesome.com/55072ce5fd.js" crossorigin="anonymous"></script>
</head> </head>
<body class="parallax"> <body class="parallax">
@ -32,6 +34,9 @@
<img src="img/branding/LunarPenguin_newPalette_transparency_brightDiamond.png" alt="Logo" style="max-height: 50px;padding-right: 15px;"> <img src="img/branding/LunarPenguin_newPalette_transparency_brightDiamond.png" alt="Logo" style="max-height: 50px;padding-right: 15px;">
Kaj Forney Kaj Forney
</a> </a>
<span class="navbar-text">
Portfolio
</span>
</div> </div>
</nav> </nav>
@ -173,7 +178,7 @@
<h2>Megashigi</h2> <h2>Megashigi</h2>
</div> </div>
<div class="col-sm-8"> <div class="col-sm-8">
<p>Megashigi is a game that I helped create, with a few friends, as a birthday gift. My portion of the project included the implementation of the game's playable, interactive credits sequence, as well as general level design, and subtitles for the game's rap sequence.</p> <p>Megashigi is a game that I helped create in the Godot Engine, along with a few friends, as a birthday gift. My portion of the project included the implementation of the game's playable, interactive credits sequence, as well as general level design, and subtitles for the game's rap sequence.</p>
</div> </div>
</div> </div>
@ -186,6 +191,55 @@
<hr class="mt-5"> <hr class="mt-5">
<div class="container-lg">
<h1>SOCIAL</h1>
<div class="row">
<div class="col-3 card">
<div class="card-body">
<a href="https://mastodon.gamedev.place/@lunar_penguin">
<h2>
<i class="fa-brands fa-mastodon"></i>
</h2>
<h5>Mastodon</h5>
</a>
</div>
</div>
<div class="col-3 card">
<div class="card-body">
<a href="https://twitter.com/KajForney">
<h2>
<i class="fa-brands fa-twitter"></i>
</h2>
<h5>Twitter</h5>
</a>
</div>
</div>
<div class="col-3 card">
<div class="card-body">
<a href="https://twitch.tv/lunar_penguin">
<h2>
<i class="fa-brands fa-twitch"></i>
</h2>
<h5>Twitch</h5>
</a>
</div>
</div>
<div class="col-3 card">
<div class="card-body">
<a href="https://lunarpenguin.itch.io">
<h2>
<i class="fa-brands fa-itch-io"></i>
</h2>
<h5>Itch.io</h5>
</a>
</div>
</div>
</div>
</div>
<script src="js/vendor/modernizr-3.11.2.min.js"></script> <script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script> <script src="js/plugins.js"></script>
<script src="js/main.js"></script> <script src="js/main.js"></script>