Comments done! Redesign!

This commit is contained in:
Keyemail 2024-05-07 23:30:34 -07:00
parent 35e9697681
commit a5de236b8c
2 changed files with 51 additions and 27 deletions

Binary file not shown.

View file

@ -11,36 +11,34 @@
<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> <article>
<h1>Comments! Please leave one!</h1> <h1>Comments!</h1>
<div> <div>
<span>Me: Hello!</span> <span>Developer: Sorry this function is in the workings! Come back later to use this function.</span>
<span>Me: Hello!</span>
<span>Me: Hello! this is a very long text thats suppose to take the entire screen so we can see how it handles mutiple if not triple the amount of lines it suppose to use.</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
<span>Me: Hello!</span>
</div> </div>
<input type="text" placeholder="Start Typing.." required minlength="1"/> <input type="text" placeholder="Start Typing.." required minlength="1"/>
</article> </article>
</div> </div>
<i class="fa-solid fa-arrow-down morearrow" @click="downArrow()" title="Nothing.."></i>
</template> </template>
<script>
export default {
methods: {
downArrow(){
if(counter >= 4){
var quack = new Audio(require('@/assets/sounds/duck-quack.mp3'));
quack.play();
counter = 0;
}
alert('Nothing to scroll down to, may come useful later though..');
counter++;
}
}
}
var counter = 0;
</script>
<style scoped> <style scoped>
header { header {
display: flex; display: flex;
@ -93,7 +91,7 @@ header h1 {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-top: 90px; margin-top: 90px;
width: 750px; width: 700px;
color: white; color: white;
font-family: 'Rubik', sans-serif; font-family: 'Rubik', sans-serif;
background-color: #151d2f; background-color: #151d2f;
@ -118,8 +116,8 @@ header h1 {
article { article {
background-color: #151d2f; background-color: #151d2f;
height: 350px; height: 350px;
width: 630px; width: 700px;
margin: 90px 0; margin-top: 90px;
border-radius: 10px; border-radius: 10px;
padding: 20px; padding: 20px;
} }
@ -140,7 +138,7 @@ article div {
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
overflow: auto; overflow: auto;
max-height: 240px; height: 240px;
background-color: #111826; background-color: #111826;
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 10px;
@ -160,6 +158,32 @@ article input {
border-radius: 10px; border-radius: 10px;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
font-family: 'Rubik', sans-serif;
font-weight: 300;
}
.morearrow {
cursor: pointer;
font-size: 40px;
color: white;
margin: 40px auto;
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){