style: alignment adjust
This commit is contained in:
parent
6c7c5a4230
commit
4f0d3b57a3
2 changed files with 24 additions and 18 deletions
|
@ -14,6 +14,7 @@
|
|||
|
||||
footer {
|
||||
color: #888;
|
||||
margin-left: -40px;
|
||||
}
|
||||
|
||||
footer a {
|
||||
|
|
|
@ -8,24 +8,25 @@ import Footer from '../components/Footer.astro';
|
|||
<main>
|
||||
<nav><a href="/">Back</a></nav>
|
||||
<h1>Social <span class="text-gradient">Links</span></h1>
|
||||
<ul role="list" style="list-style:none">
|
||||
<Card
|
||||
href="https://twitter.com/ayoayco/"
|
||||
title="Twitter"
|
||||
body="Tweets about my takes on technology and current events"
|
||||
/>
|
||||
<Card
|
||||
href="https://www.linkedin.com/in/ayoayco/"
|
||||
title="LinkedIn"
|
||||
body="Connect with me and my professional network"
|
||||
/>
|
||||
<Card
|
||||
href="https://soundcloud.com/ayoayco/"
|
||||
title="SoundCloud"
|
||||
body="Yes, I make music... until I moved to a new contry this year"
|
||||
/>
|
||||
|
||||
</ul>
|
||||
<div class="content">
|
||||
<ul role="list" style="list-style:none">
|
||||
<Card
|
||||
href="https://twitter.com/ayoayco/"
|
||||
title="Twitter"
|
||||
body="Tweets about my takes on technology and current events"
|
||||
/>
|
||||
<Card
|
||||
href="https://www.linkedin.com/in/ayoayco/"
|
||||
title="LinkedIn"
|
||||
body="Connect with me and my professional network"
|
||||
/>
|
||||
<Card
|
||||
href="https://soundcloud.com/ayoayco/"
|
||||
title="SoundCloud"
|
||||
body="Yes, I make music... until I moved to a new contry this year"
|
||||
/>
|
||||
</ul>
|
||||
</div>
|
||||
<Footer></Footer>
|
||||
</main>
|
||||
</Layout>
|
||||
|
@ -35,6 +36,10 @@ import Footer from '../components/Footer.astro';
|
|||
--astro-gradient: linear-gradient(0deg, #4f39fa, #da62c4);
|
||||
}
|
||||
|
||||
div.content {
|
||||
margin-left: -40px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 2rem 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue