Link cards simplified

Description of LinkCards is no longer displayed. This should make things simpler
This commit is contained in:
Louis Hollingworth 2022-05-21 22:42:40 +01:00
parent b230abc48b
commit 0304bf763c
No known key found for this signature in database
GPG key ID: 1E66DEA3F5D623D1
3 changed files with 80 additions and 56 deletions

View file

@ -1,101 +1,99 @@
@use 'colours'; @use 'colours';
.container { .container {
min-height: 100vh; min-height: 100vh;
padding: 0 0.5rem; padding: 0 0.5rem;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100vh; height: 100vh;
} }
.footer { .footer {
width: 100%; width: 100%;
height: 100px; height: 100px;
border-top: 1px solid #eaeaea; border-top: 1px solid #eaeaea;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.footer a:hover { .footer a:hover {
color: #0070f3; color: #0070f3;
} }
.footer a { .footer a {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
flex-grow: 1; flex-grow: 1;
color: #eaeaea; color: #eaeaea;
} }
.title a { .title a {
color: #0070f3; color: #0070f3;
text-decoration: none; text-decoration: none;
} }
.title a:hover, .title a:hover,
.title a:focus, .title a:focus,
.title a:active { .title a:active {
text-decoration: underline; text-decoration: underline;
} }
.title { .title {
margin: 0; margin: 0;
line-height: 1.15; line-height: 1.15;
font-size: 4rem; font-size: 4rem;
} }
.title, .title,
.description { .description {
text-align: center; text-align: center;
color: #eaeaea color: #eaeaea;
} }
.description { .description {
line-height: 1.5; line-height: 1.5;
font-size: 1.5rem; font-size: 1.5rem;
} }
.code { .code {
background: #fafafa; background: #fafafa;
border-radius: 5px; border-radius: 5px;
padding: 0.75rem; padding: 0.75rem;
font-size: 1.1rem; font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, font-family: Menlo, Monaco, Lucida Console, Liberation Mono,
Bitstream Vera Sans Mono, Courier New, monospace; DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
} }
.grid { .grid {
display: flex; display: grid;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
flex-wrap: wrap; grid-template-columns: 1fr 1fr 1fr;
max-width: 800px;
margin-top: 3rem;
} }
.card h2 { .card h2 {
margin: 0 0 1rem 0; margin: 0 0 1rem 0;
font-size: 1.5rem; font-size: 1.5rem;
} }
.card p { .card p {
margin: 0; margin: 0;
font-size: 1.25rem; font-size: 1.25rem;
line-height: 1.5; line-height: 1.5;
} }
.logo { .logo {
height: 1em; height: 1em;
margin-left: 0.5rem; margin-left: 0.5rem;
} }
@media (max-width: 600px) { @media (max-width: 600px) {
.grid { .grid {
width: 100%; width: 90%;
flex-direction: column; grid-template-columns: 1fr 1fr;
} }
} }

View file

@ -1,13 +1,12 @@
<template> <template>
<a class="card" :href="link"> <a class="card" :href="link">
<p>{{ title }}</p> <p>{{ title }}</p>
<p>{{ description }}</p>
</a> </a>
</template> </template>
<script> <script>
export default { export default {
props: ['title', 'description', 'link'], props: ['title', 'link'],
}; };
</script> </script>
@ -19,7 +18,7 @@ export default {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;
border: 2px solid #000; border: 2px solid #000;
border-radius: 10px; border-radius: 20px;
transition: color 0.15s ease, border-color 0.15s ease; transition: color 0.15s ease, border-color 0.15s ease;
} }
@ -34,4 +33,12 @@ export default {
color: #0070f3 !important; color: #0070f3 !important;
border-color: #0070f3; border-color: #0070f3;
} }
@media (max-width: 600px) {
.card {
margin: 0.5rem;
padding: 1.25rem;
width: 9rem;
}
}
</style> </style>

View file

@ -10,7 +10,26 @@ import '@/assets/styles/index.scss';
spaces. spaces.
</p> </p>
<div class="grid"> <div class="grid">
<LinkCard title="Watch" description="Watch the series on Netflix" link="https://www.netflix.com/title/81210762" /> <LinkCard
title="Watch →"
link="https://www.netflix.com/title/81210762"
/>
<LinkCard
title="Discord →"
link="https://discord.gg/hyKVDeRJ8Y"
/>
<LinkCard
title="Reddit →"
link="https://www.reddit.com/r/YoungRoyals/"
/>
<LinkCard
title="Babbel (ref) →"
link="https://www.talkable.com/x/IchxFl"
/>
<LinkCard
title="Matrix →"
link="https://matrix.to/#/#young-royals:matrix.org"
/>
</div> </div>
</div> </div>
</template> </template>