Add some style
This commit is contained in:
@@ -9,9 +9,9 @@
|
|||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="stylesheet" href="styles/style.css">
|
<link rel="stylesheet" href="./styles/style.css">
|
||||||
<link rel="stylesheet" href="styles/introduction.css">
|
<link rel="stylesheet" href="./styles/introduction.css">
|
||||||
<link rel="stylesheet" href="styles/projects.css">
|
<link rel="stylesheet" href="./styles/projects.css">
|
||||||
|
|
||||||
<title>Naaturel</title>
|
<title>Naaturel</title>
|
||||||
|
|
||||||
@@ -27,37 +27,43 @@
|
|||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
<p>Scroll down to get started</p>
|
<p>Scroll down to get started</p>
|
||||||
<div><img src="/html/assets/arrow.svg" alt="arrow"></div>
|
<div><img src="./assets/arrow.svg" alt="arrow"></div>
|
||||||
</footer>
|
</footer>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="projects">
|
<section id="projects">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h1> My projects </h1>
|
<div>
|
||||||
<hr/>
|
<h1> Live projects </h1>
|
||||||
<h2>Front</h2>
|
<hr/>
|
||||||
<div class="project-list">
|
<div class="project-list">
|
||||||
<a href="https://unluckiest.naaturel.be"><img src="/html/assets/unluckiest.png" alt="unluckiest"></a>
|
<a href="https://unluckiest.naaturel.be"><img src="./assets/unluckiest.png" alt="unluckiest"></a>
|
||||||
<a href="https://letsmeet.naaturel.be"><img src="/html/assets/letsmeet.png" alt="letsmeet"></a>
|
<a href="https://letsmeet.naaturel.be"><img src="./assets/letsmeet.png" alt="letsmeet"></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2>Back</h2>
|
</div>
|
||||||
<div class="project-list">
|
<div class="separator"></div>
|
||||||
<a href=""><img src="" alt=""></a>
|
<div>
|
||||||
<a href=""><img src="" alt=""></a>
|
<h1> Connect with me! </h1>
|
||||||
|
<hr/>
|
||||||
|
<div class="links">
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/Naaturel/">Github</a></li>
|
||||||
|
<li><a href="https://x.com/naaturel_/">X (Twitter)</a></li>
|
||||||
|
<li><a href="https://www.instagram.com/naaturel_/">Instagram</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>Wow you've scrolled so far</section>
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<script type="module">
|
<script type="module">
|
||||||
import { Typer } from '/html/scripts/Typer.js';
|
import { Typer } from './scripts/Typer.js';
|
||||||
|
|
||||||
const target = document.getElementsByClassName('typer')[0];
|
const target = document.getElementsByClassName('typer')[0];
|
||||||
const texts = ["Backend dev", "Frontend dev", "Fullstack software engineer"];
|
const texts = ["Backend dev", "Frontend dev", "Fullstack software engineer"];
|
||||||
|
|||||||
@@ -1,9 +1,16 @@
|
|||||||
#projects .content {
|
#projects .content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: row;
|
||||||
|
justify-content: space-around;
|
||||||
|
align-items: start;
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
#projects .content div hr {
|
||||||
|
margin : 25px 0 25px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-list {
|
|
||||||
|
.project-list, .links {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
gap : 1rem;
|
gap : 1rem;
|
||||||
@@ -20,3 +27,49 @@
|
|||||||
.project-list img:hover {
|
.project-list img:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.links {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links ul {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 40px;
|
||||||
|
padding : 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links ul li {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border-radius: 10px;
|
||||||
|
transition: background 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links ul li:hover {
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.links ul li::before {
|
||||||
|
content: ">";
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links ul li:hover::before {
|
||||||
|
animation: blink 1s step-start infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,8 @@
|
|||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: 'Fira Code', 'PT sans', sans-serif;
|
font-family: 'Fira Code', 'PT sans', sans-serif;
|
||||||
|
|
||||||
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
@@ -25,6 +24,15 @@ html, body, main, section, section div, footer {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #e2e2e2;
|
||||||
|
background-image:
|
||||||
|
linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
|
||||||
|
linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
|
||||||
|
background-size: 20px 20px;
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
|
|
||||||
@@ -42,3 +50,11 @@ section {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
scroll-snap-align: start;
|
scroll-snap-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul li{
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user