website/ui/src/views/Home.vue

31 lines
595 B
Vue
Raw Normal View History

2021-11-01 15:17:50 +11:00
<template>
<div id="home">
2021-11-06 00:40:51 +11:00
<v-container class="text-center">
<v-card elevation="12">
<v-container>
<p class="troploGradient">Troplo</p>
<p class="text-h4">Full-stack web developer.</p>
</v-container>
</v-card>
</v-container>
2021-11-01 15:17:50 +11:00
</div>
</template>
2021-11-01 21:23:57 +11:00
<style>
2021-11-06 00:40:51 +11:00
.troploGradient{
font-size: 300px;
font-style: italic;
background:-webkit-radial-gradient(#0179f3, #0190ea);
-webkit-background-clip:text
2021-11-01 21:23:57 +11:00
}
2021-11-06 00:40:51 +11:00
2021-11-01 21:23:57 +11:00
.normal {
font-color: #ffffff
}
</style>
2021-11-01 15:17:50 +11:00
<script>
export default {
name: 'Home',
}
2021-10-23 22:57:48 +11:00
</script>