fix random issues

master
Ayush Mukherjee 4 years ago
parent b9cb242364
commit 59686a9b9b

@ -3,6 +3,9 @@ main {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 60px 60px; padding: 60px 60px;
margin: 0 auto;
margin-bottom: 180px;
max-width: 1920px;
.content { .content {
margin-top: 60px; margin-top: 60px;
@ -27,8 +30,9 @@ main {
.underline { .underline {
display: inline-block; display: inline-block;
z-index: 2;
position: relative; position: relative;
color: $primary; color: $primary-dark;
&::after { &::after {
position: absolute; position: absolute;
@ -49,6 +53,7 @@ main {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin-bottom: 180px;
.panel:nth-child(2) { .panel:nth-child(2) {
@ -58,11 +63,12 @@ main {
.about { .about {
width: 100%; width: 100%;
margin-top: 150px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin-bottom: 180px;
padding-bottom: 100px;
.profile { .profile {
background: white; background: white;
@ -77,7 +83,7 @@ main {
} }
.content { .content {
max-width: 1000px; max-width: 70%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
@ -123,7 +129,8 @@ main {
} }
.contact { .contact {
margin: 120px 0; margin-top: 50px;
margin-bottom: 180px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
@ -134,7 +141,7 @@ main {
padding: 15px 30px; padding: 15px 30px;
max-width: 500px; max-width: 500px;
width: 100%; width: 100%;
background: $quaternary; background: $tertiary;
border-radius: 5px; border-radius: 5px;
box-shadow: 0 3px 15px rgba($secondary, 20%); box-shadow: 0 3px 15px rgba($secondary, 20%);

@ -1,25 +1,29 @@
<template> <template>
<div class="container"> <!-- TODO: FIX INDENTATION -->
<div class="wrapper">
<div class="container bg-alternate">
<main> <main>
<div class="content"> <div class="content">
<div class="tag"> <div class="tag">
Hey! I'm <span class="underline">Ayush Mukherjee.</span> Hey! I'm <span class="underline">Ayush Mukherjee.</span>
<br> <br>
I'm a software engineer and open-source enthusiast. I'm a software engineer and open-source enthusiast.
</div> </div>
<div class="para"> <div class="para">
<p>This website is the digital home of my projects. You can wait for my upcoming blog, learn more <span class="underline">about me</span> or <span class="underline">say hi!</span></p> <p>This website is the digital home of my projects. You can wait for my upcoming blog, learn more <span class="underline">about me</span> or <span class="underline">say hi!</span></p>
</div>
<div class="cta">
<a href="#about" class="btn">About Me</a>
<a href="https://github.com/ayush123460" target="_blank" class="btn btn-secondary">GitHub Profile</a>
</div>
</div> </div>
<div class="cta"> <div class="illustration">
<a href="#work" class="btn">About Me</a> <img src="@/assets/illustration.png" alt="Illustration">
<a href="#contact" class="btn btn-secondary">GitHub Profile</a>
</div> </div>
</div>
<div class="illustration">
<img src="@/assets/illustration.png" alt="Illustration">
</div>
</main> </main>
</div>
<div class="container">
<div class="title" id="work"> <div class="title" id="work">
Work / Projects Work / Projects
</div> </div>
@ -69,7 +73,9 @@
</div> </div>
</div> </div>
</section> </section>
</div>
<div class="container bg-alternate">
<div class="title" id="about"> <div class="title" id="about">
About Me About Me
</div> </div>
@ -93,7 +99,9 @@
</div> </div>
</div> </div>
</section> </section>
</div>
<div class="container">
<div class="title" id="contact"> <div class="title" id="contact">
Contact Me Contact Me
</div> </div>
@ -139,6 +147,7 @@
</div> </div>
</section> </section>
</div> </div>
</div>
</template> </template>
<script> <script>

Loading…
Cancel
Save