ayco.io-astro/src/pages/index.astro
2023-03-01 12:40:25 +01:00

174 lines
3.9 KiB
Text

---
import Layout from "../layouts/Layout.astro";
import Card from "../components/Card.astro";
import Footer from "../components/Footer.astro";
---
<Layout>
<section class="highlighted-section">
<div class="highlighted-section__content">
<h1 title="Ayo Ayco | Software Engineer + Web Developer">
<span class="heavy-text">Ayo</span>Ayco
</h1>
<ul role="list">
<li>🚀 Building <a href="https://astro-reactive.dev">Astro Reactive</a></li>
<li>🦌 Contributing to <a href="https://elk.zone">Elk</a></li>
<li>👨🏻‍💻 Software Extraordinaire</li>
<li>🕵🏻‍♂️ Frontend Detective</li>
</ul>
<a href="/now" class="now-wrapper">
<span class="now-label">Now</span>
<span class="status">The Fediverse and Other Passion Projects</span>
</a>
</div>
</section>
<main>
<section class="cards-section">
<ul role="list" class="cards-section__grid">
<Card
href="/showcase"
title="Fun Side Projects"
body="See demos of opensource side projects I created"
/>
<Card
href="/social"
title="Social Links"
body="Connect with me on various social platforms"
/>
<Card
newTab={true}
href="https://drive.google.com/file/d/1MhN8qWRJnSHM_epU9GFQL9lEsMFtHWQK/view?usp=sharing"
title="CV / Resume"
body="Download and peruse my skills and experience"
/>
<Card
newTab={true}
href="https://github.com/ayoayco"
title="Github"
body="See my public projects over at Github"
/>
</ul>
<Footer />
</section>
</main>
</Layout>
<style>
h1 {
margin: 0;
color: rgba(255, 255, 255, 0.75);
}
h1 span.heavy-text {
font-weight: 900;
color: white;
}
main {
max-width: 100% !important;
}
.highlighted-section__content {
margin: auto;
padding: 1em;
max-width: var(--content-width);
font-weight: normal;
font-size: large;
color: var(--color-bg);
line-height: 1.6;
}
.now-wrapper {
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 40px;
padding: 8px 4px;
font-weight: normal;
color: white;
font-size: small;
text-decoration: none;
}
.now-label {
border-radius: 40px;
background-color: rgba(0, 0, 0, 0.6);
color: white;
padding: 4px 8px;
text-transform: uppercase;
font-weight: bold;
}
.status {
padding-right: 4px;
}
.highlighted-section {
background: var(--ayo-gradient);
background-size: 500% 500%;
animation: pulse 15s ease-in-out infinite;
box-shadow: 0 8px 8px -4px lightblue;
}
.highlighted-section__content ul a {
color: white;
font-weight: normal;
}
.highlighted-section__content ul {
list-style-type: none;
padding: 0;
}
.cards-section {
margin: auto;
max-width: var(--content-width);
}
.cards-section__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
gap: 1rem;
padding: 0;
}
@media only screen and (max-device-width: 360px) {
.now-wrapper {
border: 0px;
font-size: x-small;
width: 100%;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
padding: 0;
margin: 0;
}
.now-label {
background-color: transparent;
color: white;
text-decoration: underline;
padding: 0;
margin: 0;
}
.now-label::before {
content: "* ";
}
.now-label::after {
content: ":";
}
}
@media only screen and (min-device-width: 280px) and (max-device-width: 653px) {
.highlighted-section__content ul li {
font-size: 14px;
}
}
@media only screen and (min-device-width: 360px) and (max-device-width: 812px) {
.highlighted-section__content ul li {
font-size: 20px;
}
}
</style>