💄 frontpage finished styling
This commit is contained in:
parent
de4c34a419
commit
4dc3304b70
2 changed files with 63 additions and 9 deletions
|
@ -4,6 +4,10 @@ import Header from '../components/Header.astro';
|
||||||
import Footer from '../components/Footer.astro';
|
import Footer from '../components/Footer.astro';
|
||||||
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
||||||
---
|
---
|
||||||
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
||||||
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
||||||
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
||||||
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js"></script>
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
@ -11,20 +15,45 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
||||||
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="flex flex-col fixed w-screen">
|
<div class="flex flex-col fixed w-screen p-5">
|
||||||
<Header title={SITE_TITLE} />
|
<Header title={SITE_TITLE} />
|
||||||
<main class="flex flex-col justify-center items-center p-48">
|
<main class="flex flex-col justify-center items-center p-48 description gap-4">
|
||||||
<!-- Local image stored at public/assets/stars.png -->
|
<!--<img class="w-40 rounded-full" src="/assets/pb.jpg" alt="Profile picture of me.">-->
|
||||||
<img class="w-40 rounded-full" src="/assets/pb.jpg" alt="Profile picture of me.">
|
<div class="profile"></div>
|
||||||
|
<h1 class="text-3xl font-bold">Sindre Kjelsrud</h1>
|
||||||
<h1>🧑🚀 Hello, Astronaut!</h1>
|
|
||||||
<p class="max-w-md">
|
<p class="max-w-md">
|
||||||
Welcome to the official <a href="https://astro.build/">Astro</a> blog starter template. This
|
Student at Western University of Applied Sciences.
|
||||||
template serves as a lightweight, minimally-styled starting point for anyone looking to build
|
|
||||||
a personal website, blog, or portfolio with Astro.
|
|
||||||
</p>
|
</p>
|
||||||
|
<div class="flex gap-1 social">
|
||||||
|
<a href="https://www.linkedin.com/in/sindre-kjelsrud-345583218/">
|
||||||
|
<iconify-icon icon="lucide:linkedin" width="30" height="30" />
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/SindreKjelsrud">
|
||||||
|
<iconify-icon icon="ri:github-line" width="30" height="30" />
|
||||||
|
</a>
|
||||||
|
<a href="https://www.instagram.com/SindreKjelsrud/">
|
||||||
|
<iconify-icon icon="mdi:instagram" width="30" height="30" />
|
||||||
|
</a>
|
||||||
|
<a href="https://open.spotify.com/user/kjelsrud!">
|
||||||
|
<iconify-icon icon="mdi:spotify" width="30" height="30" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<Footer />
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.profile {
|
||||||
|
width: 10rem;
|
||||||
|
height: 10rem;
|
||||||
|
background: url("../../public/assets/pb.jpg");
|
||||||
|
background-size: cover;
|
||||||
|
border-radius: 9999px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile:hover {
|
||||||
|
background-image: url("https://media.tenor.com/yheo1GGu3FwAAAAC/rick-roll-rick-ashley.gif");
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -25,6 +25,31 @@ body {
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* HOME */
|
||||||
|
.social a {
|
||||||
|
color: var(--light-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark .social a {
|
||||||
|
color: var(--dark-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.social a:nth-child(1) :hover {
|
||||||
|
color: #0A66C2 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social a:nth-child(2) :hover {
|
||||||
|
color: grey !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social a:nth-child(3) :hover {
|
||||||
|
color: #C84370 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.social a:nth-child(4) :hover {
|
||||||
|
color: #1DB954 !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* TOOLS */
|
/* TOOLS */
|
||||||
.cards :hover { background: var(--light-hover) }
|
.cards :hover { background: var(--light-hover) }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue