2022-05-21 21:10:00 +00:00
|
|
|
<template>
|
|
|
|
<a class="card" :href="link">
|
|
|
|
<p>{{ title }}</p>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2022-05-21 21:42:40 +00:00
|
|
|
props: ['title', 'link'],
|
2022-05-21 21:10:00 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.card {
|
|
|
|
margin: 1rem;
|
|
|
|
padding: 1.5rem;
|
|
|
|
text-align: left;
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
border: 2px solid #000;
|
2022-05-21 21:42:40 +00:00
|
|
|
border-radius: 20px;
|
2022-05-21 21:10:00 +00:00
|
|
|
transition: color 0.15s ease, border-color 0.15s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:link,
|
|
|
|
.card:visited {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:hover,
|
|
|
|
.card:focus,
|
|
|
|
.card:active {
|
|
|
|
color: #0070f3 !important;
|
|
|
|
border-color: #0070f3;
|
|
|
|
}
|
2022-05-21 21:42:40 +00:00
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.card {
|
|
|
|
margin: 0.5rem;
|
|
|
|
padding: 1.25rem;
|
|
|
|
width: 9rem;
|
|
|
|
}
|
|
|
|
}
|
2022-05-21 21:10:00 +00:00
|
|
|
</style>
|