in progress

This commit is contained in:
Rose Apollo 2025-02-15 14:12:46 +00:00
parent 451d0d3583
commit d23f1f1677
4 changed files with 132 additions and 1 deletions

BIN
content/assets/bluesky.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 KiB

View File

@ -10,7 +10,7 @@
<link rel="stylesheet" href="/style.css">
<title>roseapollo.com</title>
<title>roseapollo</title>
</head>
<body>
<div id="about">
@ -19,6 +19,37 @@
<p>game development (programming) student at falmouth uni</p>
<p>familiar with c#, unity, c, photoshop, premier / after affects and blender</p>
</div>
<br><br>
<div id="log">
<div class="logitem">
<a href="https://fabledarmstudios.itch.io/boil-and-bubble-tea" class="nounderlink">
<img src="https://img.itch.zone/aW1nLzE5NTM0NzU1LnBuZw==/315x250%23c/VQ0NWd.png">
<div class="logtext">
<h2>Boil & Bubble Tea</h2>
<p>This game was made in 48hs during the Global Game Jam 2025 with the theme of 'Bubble' by Fabled Arm Studios.</p>
</div>
</a>
</div>
<div class="logitem">
<a href="https://www.youtube.com/watch?v=6RG577TGWcQ" class="nounderlink">
<img src="https://i.ytimg.com/vi/6RG577TGWcQ/hqdefault.jpg?sqp=-oaymwE2CNACELwBSFXyq4qpAygIARUAAIhCGAFwAcABBvABAfgB_gmAAtAFigIMCAAQARhUIGUoTjAP&rs=AOn4CLAOkwZkoeyeNbnGlyzgViF2OiKyOg">
<div class="logtext">
<h2>solar system simulation</h2>
<p>realtime n-body simulation done in unity with c# / compute shaders</p>
</div>
</a>
</div>
<div class="logitem">
<a href="https://bsky.app/profile/rose.roseapollo.com" class="nounderlink">
<img src="/assets/bluesky.webp">
<div class="logtext">
<h2>bluesky</h2>
<p></p>
</div>
</a>
</div>
</div>
<br><br>
<div id="footer">
<a href="https://bsky.app/profile/rose.roseapollo.com" target="_blank">bluesky</a>
<a href="https://discord.gg/XbHYc9MX" target="_blank">discord</a>

20
content/photos/index.html Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
<title>roseapollo | photos</title>
</head>
<body>
<div id="about">
<a href="/" class="nounderlink"><h1>rose apollo</h1></a>
</div>
</body>
</html>

View File

@ -1,11 +1,91 @@
body {
background-color: black;
padding-left: 8px;
padding-right: 8px;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 1.5em;
}
.nounderlink a:link {
text-decoration: none;
}
.nounderlink a:visited {
text-decoration: none;
}
.nounderlink a:hover {
text-decoration: none;
}
.nounderlink a:active {
text-decoration: none;
}
#log .logitem img {
width: 95%;
min-width: 95%;
max-width: 95%;
aspect-ratio: 16/9;
object-fit: cover;
border-radius: 16px;
padding-bottom: 0;
transition: .2s;
}
#log .logitem .logtext {
padding-left: 16px;
padding-right: 16px;
padding-bottom: none;
position:absolute;
top: 0;
display: none;
text-overflow: ellipsis;
}
#log .logitem:hover img {
filter: grayscale(100%);
filter: brightness(25%);
/*rotate: 1deg;*/
}
#log .logitem:hover .logtext {
display :block
}
#log .logitem p {
padding-top: none;
padding-right: 16px;
}
#log .logitem {
position: relative;
}
#log {
display: grid;
grid-template-columns: 25% 25% 25% 25%;
column-gap: 32px;
row-gap: 32px;
}
@media only screen and (max-width: 600px)
{
#log {
display: grid;
grid-template-columns: 100%;
column-gap: 32px;
row-gap: 32px;
}
}
#footer {
position: fixed;
left: 0;