mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
92 lines
2.0 KiB
Vue
92 lines
2.0 KiB
Vue
<template>
|
|
<div class="container">
|
|
<div>
|
|
<logo />
|
|
<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://discord.gg/34RqygKbtX"
|
|
target="_blank"
|
|
class="button--green"
|
|
>
|
|
Github
|
|
</a>
|
|
<a
|
|
href="https://discord.gg/34RqygKbtX"
|
|
target="_blank"
|
|
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> |