Files
web/pages/index.vue
timothypidashev 551e6cbd0e update
2021-07-15 04:24:38 +00:00

93 lines
2.1 KiB
Vue

<template>
<div class="container">
<div>
<h1 class="title">
Timothy Pidashev
</h1>
<h2 class="subtitle">
A 16-year-old on an epic journey to become a software developer!
</h2>
<div class="links">
<a
href="https://github.com/timothypidashev"
target="_blank"
rel="noopener"
class="button--green"
>
Github
</a>
<a
href="https://discord.gg/34RqygKbtX"
target="_blank"
rel="noopener"
class="button--grey"
>
Discord
</a>
</div>
</div>
</div>
</template>
<style>
.container {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #200933 75%, #3d0b43);
background-size: auto 100vh;
background-position: top;
background-repeat: no-repeat;
position: relative;
margin: 0 auto;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.container:after{
content:'';
height:300px;
width:100%;
display:block;
background-image:linear-gradient(90deg, rgba(252,25,154,.1) 1px, rgba(0,0,0,0) 1px), linear-gradient(0deg, rgba(252,25,154,.1) 1px, rgba(0,0,0,0) 1px);
background-position:bottom;
background-repeat:repeat;
background-size:20px 20px;
left: -25px;
position: fixed;
pointer-events: none;
bottom: 0;
transform: perspective(100px) rotateX(60deg);
z-index: 0;
}
.container::backdrop {
background-image: repeating-linear-gradient(to bottom, transparent 0 ,transparent 2px, #FFF 2px, #FFF 4px);
background-size: 100% 4px cover;
transform-origin: 50% 50%;
content: '';
opacity: 0.02;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.title {
font-family: 'New_Zelek' 'Arial';
display: block;
font-weight: 300;
font-size: 100px;
color: #FF2965;
letter-spacing: 1px;
}
.subtitle {
font-weight: 300;
font-size: 42px;
color: #FF2965;
word-spacing: 5px;
padding-bottom: 15px;
}
.links {
padding-top: 15px;
}
</style>