Rework style
This commit is contained in:
109
html/index.html
109
html/index.html
@@ -7,32 +7,98 @@
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="./styles/style.css">
|
||||
<link rel="stylesheet" href="./styles/mobile.css">
|
||||
<link rel="stylesheet" href="./styles/introduction.css">
|
||||
<link rel="stylesheet" href="styles/projects.css">
|
||||
|
||||
<title>Naaturel</title>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div class="container">
|
||||
<div class="introduction">
|
||||
<div class="introduction-box punched-card">
|
||||
<div class="introduction-header">
|
||||
<img src="./assets/pfp.jpg" alt="profile picture" class="profile-picture">
|
||||
<div class="names">
|
||||
<h2 class="surname">Naaturel</h2>
|
||||
<h4 class="real-name">Laurent Crema</h4>
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="introduction-text">
|
||||
<h2>Hello there!</h2>
|
||||
<section>
|
||||
<h3><span class="accentuated">About</span> me</h3>
|
||||
<p>
|
||||
I'm a full-stack software engineer who loves building efficient, reliable apps
|
||||
and solving real-world problems through clean, scalable code.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section id="introduction">
|
||||
<div class="content">
|
||||
<h1> Naaturel </h1>
|
||||
<hr/>
|
||||
<h2 class="typer"></h2>
|
||||
<section>
|
||||
<h3>My <span class="accentuated">background</span></h3>
|
||||
<p>
|
||||
Bla bla bla lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h3>My <span class="accentuated">skills</span></h3>
|
||||
<p>
|
||||
Java, C#, Python, JavaScript / TypeScript, Node.js, Vue, PostgreSQL, Docker.
|
||||
</p>
|
||||
|
||||
</section>
|
||||
<section>
|
||||
<h3><span class="accentuated">Connect</span> with me</h3>
|
||||
<p>
|
||||
<a href="mailto:yourname@example.com">Email</a> •
|
||||
<a href="https://github.com/yourusername" target="_blank">GitHub</a> •
|
||||
<a href="https://linkedin.com/in/yourprofile" target="_blank">LinkedIn</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<p>Scroll down to get started</p>
|
||||
<div><img src="./assets/arrow.svg" alt="arrow"></div>
|
||||
</footer>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
<div class="projects">
|
||||
|
||||
<h1>Check out my live projects</h1>
|
||||
|
||||
<section id="projects">
|
||||
<div class="card-list">
|
||||
<div class="card punched-card">
|
||||
<a href="https://unluckiest.naaturel.be">
|
||||
<img src="./assets/unluckiest.png" class="thumbnail" alt="Unluckiest">
|
||||
</a>
|
||||
<hr/>
|
||||
|
||||
<div class="card-details">
|
||||
<h3>Unluckiest</h3>
|
||||
<p class="notice">
|
||||
Art & design by <a href="https://linktr.ee/yanderechan133">@YandereDraws</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card punched-card">
|
||||
<a href="https://letsmeet.naaturel.be">
|
||||
<img src="./assets/letsmeet.png" class="thumbnail" alt="Let's Meet">
|
||||
</a>
|
||||
<hr/>
|
||||
<div class="card-details">
|
||||
<h3>Letsmeet</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!--<div class="card-list">
|
||||
<a>
|
||||
<div class="card">
|
||||
<h2>My <span class="accentuated">projects</span></h2>
|
||||
@@ -40,7 +106,6 @@
|
||||
<p>Get a look at what I've worked on</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a>
|
||||
<div class="card">
|
||||
<h2><span class="accentuated">About</span> me</h2>
|
||||
@@ -56,8 +121,12 @@
|
||||
<p>Get in touch with me</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>-->
|
||||
<!--<footer>
|
||||
<p>Scroll down to get started</p>
|
||||
<div><img src="./assets/arrow.svg" alt="arrow"></div>
|
||||
</footer>-->
|
||||
|
||||
<!--<div class="content">
|
||||
<div >
|
||||
@@ -82,8 +151,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
|
||||
@@ -93,7 +160,7 @@
|
||||
import { Typer } from './scripts/Typer.js';
|
||||
|
||||
const target = document.getElementsByClassName('typer')[0];
|
||||
const texts = ["Backend dev", "Frontend dev", "Fullstack software engineer"];
|
||||
const texts = ["backend dev", "frontend dev", "fullstack software engineer"];
|
||||
const typer = new Typer({target: target, texts: texts, typingDelay: 150, deletionDelay: 50});
|
||||
typer.start();
|
||||
</script>
|
||||
@@ -102,9 +169,9 @@
|
||||
<script type="module">
|
||||
import {CardTilter} from "./scripts/CardTilter.js";
|
||||
|
||||
const cards = document.querySelectorAll('.card');
|
||||
const cards = document.querySelectorAll('.introduction-box');
|
||||
|
||||
cards.forEach(card => { new CardTilter({card : card, tilt : 15, perspective : 650}) })
|
||||
cards.forEach(card => { new CardTilter({card : card, tilt : 5, perspective : 950}) })
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user