Removed comments; bad design

This commit is contained in:
Keyemail 2024-05-26 05:17:41 -07:00 committed by Keyemail
parent 81084173dc
commit 824d8b29dd
Signed by: keyemail
GPG key ID: 6FD1A0FDB0D914C2
2 changed files with 7 additions and 38 deletions

View file

@ -18,7 +18,7 @@
<li><router-link to="/" @click="mobileUI()">Home</router-link></li> <li><router-link to="/" @click="mobileUI()">Home</router-link></li>
<li><router-link to="/gallery" @click="mobileUI()">Gallery</router-link></li> <li><router-link to="/gallery" @click="mobileUI()">Gallery</router-link></li>
<li><router-link to="/socials" @click="mobileUI()">Socials</router-link></li> <li><router-link to="/socials" @click="mobileUI()">Socials</router-link></li>
<li><router-link to="/projects" @click="mobileUI()">Projects</router-link></li> <li><a href="https://git.keyemail.dev/explore/">Projects</a></li>
</ul> </ul>
</div> </div>
</div> </div>

View file

@ -5,19 +5,10 @@
</a> </a>
<h1>Keyemail</h1> <h1>Keyemail</h1>
</header> </header>
<div class="section-row">
<div class="intro"> <div class="intro">
<h1>Hi, I'm Keyemail or Patrick.</h1> <h1>Hi, I'm Keyemail or Patrick.</h1>
<p>I specialize in IT and web development-related stuff, but I also love doing a variety of different hobbies such as Flight Simulator, or learning Japanese. I daily run an Arch Linux machine as my main system and support Linux in every way. I'm glad to meet you! </p> <p>I specialize in IT and web development-related stuff, but I also love doing a variety of different hobbies such as Flight Simulator, or learning Japanese. I daily run an Arch Linux machine as my main system and support Linux in every way. I'm glad to meet you! </p>
</div> </div>
<article>
<h1>Comments!</h1>
<div>
<span>Developer: Sorry this function is in the workings! Come back later to use this function.</span>
</div>
<input type="text" placeholder="Start Typing.." required minlength="1"/>
</article>
</div>
<i class="fa-solid fa-arrow-down morearrow" @click="downArrow()" title="Nothing.."></i> <i class="fa-solid fa-arrow-down morearrow" @click="downArrow()" title="Nothing.."></i>
</template> </template>
@ -82,37 +73,31 @@ header h1 {
background-color: #afb5c8 background-color: #afb5c8
} }
.section-row {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.intro { .intro {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 90px; align-items: center;
width: 700px; margin-top: 40px;
width: 100%;
color: white; color: white;
font-family: 'Rubik', sans-serif; font-family: 'Rubik', sans-serif;
background-color: #151d2f; background-color: #151d2f;
border-radius: 10px; border-radius: 10px;
padding: 20px; padding: 20px;
text-align: center;
box-sizing: border-box;
} }
.intro h1 { .intro h1 {
font-size: 3.5rem; font-size: 3.5rem;
font-weight: 500; font-weight: 500;
text-align: left;
} }
.intro p { .intro p {
margin-top: 15px; margin-top: 15px;
font-size: 1.8rem; font-size: 1.8rem;
font-weight: 400; font-weight: 400;
text-align: left; max-width: 800px;
max-width: 1200px;
} }
article { article {
@ -172,22 +157,6 @@ article input {
margin-top: 80px; margin-top: 80px;
} }
@media screen and (max-width: 1519px){
.section-row > * {
width: 100%;
}
.intro h1 {
text-align: center;
}
.intro p {
text-align: center;
max-width: 100%;
}
article{
margin-top: 20px;
}
}
@media screen and (max-width: 450px){ @media screen and (max-width: 450px){
header { header {
flex-direction: column; flex-direction: column;