Skip to content
This repository was archived by the owner on Feb 12, 2026. It is now read-only.

Commit 3e87f44

Browse files
committed
fixed stylesheet
1 parent c498175 commit 3e87f44

4 files changed

Lines changed: 48 additions & 31 deletions

File tree

about.html

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@
1717
<body>
1818
<div class="wrapper">
1919
<main class="container">
20-
<section class="about-section">
21-
<img src="uploads/profile-picture.png" alt="Profile Picture" />
22-
<h2>Hey, I'm Neocle</h2>
23-
</section>
20+
<img src="uploads/profile-picture.png" alt="Profile Picture" class="about-avatar"/>
21+
<h2 class="title">Hey, I'm Neocle</h2>
2422

2523
<div class="navbar animate-on-load">
2624
<a href="/"><i class="navbar-icons fa-solid fa-house"></i>Home</a>
@@ -32,13 +30,13 @@ <h2>Hey, I'm Neocle</h2>
3230

3331
<section class="about-section">
3432
<p>
35-
I'm a passionate developer with big dreams in game and software creation. I love bringing ideas to life with clean code and unique design. From pixel art and animations to interactive websites and indie games — I'm always exploring and learning something new.
33+
Im a 17 years old french student. I am passionated by video games and programming and I’ve always been curious about how things really work, from creating games to developing software. My goal is to learn new things and getting better at what I do. 💪💪
3634
</p>
3735
<p>
38-
I started coding as a hobby, but now it's my vision. I'm currently focused on mastering full-stack development and building my own original projects. Whether it's a cool website or an indie game prototype — I'm all about creativity, quality, and learning fast.
36+
I started programming at the age of 15, and since then, I have been working on various projects, including web development, game development, and software engineering. I am proficient in languages like JavaScript, Python, and Java. I also have experience with frameworks like React and Node.js. 💻
3937
</p>
4038
<p>
41-
Outside of coding, I enjoy gaming, making content, and discovering music that matches the energy of what I build. 🚀
39+
Outside that, I enjoy listening to music, spending time with friends and travelling. I also love to explore new technologies and stay updated with the latest trends in the tech world. 🎮🎧
4240
</p>
4341
</section>
4442
</main>

css/about.css

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,30 @@
22
display: flex;
33
flex-direction: column;
44
align-items: center;
5-
justify-content: center;
6-
min-height: 100vh;
5+
justify-content: flex-start;
6+
min-height: auto;
7+
padding-top: 2rem;
78
overflow-x: hidden;
89
overflow-y: auto;
910
}
1011

12+
.title {
13+
font-size: 2.5rem;
14+
font-weight: 800;
15+
background: linear-gradient(90deg, var(--accent), var(--end));
16+
-webkit-background-clip: text;
17+
-webkit-text-fill-color: transparent;
18+
margin-bottom: 1.5rem;
19+
}
20+
21+
.about-avatar {
22+
width: clamp(120px, 30vw, 200px);
23+
height: clamp(120px, 30vw, 200px);
24+
border-radius: 50%;
25+
box-shadow: 0 0 20px rgba(35, 138, 188, 0.4);
26+
margin-top: 5rem;
27+
margin-bottom: 1rem;
28+
}
1129

1230
.about-section {
1331
max-width: 700px;
@@ -17,31 +35,13 @@
1735
animation: fadeIn 1s ease-in;
1836
}
1937

20-
.about-section h2 {
21-
font-size: 2.5rem;
22-
font-weight: 800;
23-
margin-bottom: 1rem;
24-
background: linear-gradient(90deg, var(--accent), var(--end));
25-
-webkit-background-clip: text;
26-
-webkit-text-fill-color: transparent;
27-
}
28-
2938
.about-section p {
3039
font-size: 1.1rem;
3140
color: rgba(255, 255, 255, 0.8);
3241
line-height: 1.7;
3342
margin-bottom: 1.5rem;
3443
}
3544

36-
.about-section img {
37-
width: clamp(120px, 30vw, 200px);
38-
height: clamp(120px, 30vw, 200px);
39-
border-radius: 50%;
40-
box-shadow: 0 0 20px rgba(35, 138, 188, 0.4);
41-
margin-top: 5rem;
42-
margin-bottom: 1.5rem;
43-
}
44-
4545
@keyframes fadeIn {
4646
from {
4747
opacity: 0;
@@ -69,10 +69,10 @@
6969
font-size: 1rem;
7070
}
7171

72-
.about-section img {
73-
width: clamp(100px, 40vw, 150px);
74-
height: clamp(100px, 40vw, 150px);
75-
margin-top: 2rem;
72+
.about-avatar {
73+
width: 150px;
74+
height: 150px;
75+
margin-top: 35rem;
7676
}
7777

7878
.navbar a {

css/contact.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,21 @@ form {
8484

8585
.contact-block i {
8686
font-size: 1.6rem;
87+
}
88+
89+
90+
@media (max-width: 600px) {
91+
.project-card {
92+
flex-direction: column;
93+
align-items: flex-start;
94+
}
95+
96+
.project-img {
97+
width: 100%;
98+
height: auto;
99+
}
100+
101+
.main-title {
102+
margin-top: 5rem;
103+
}
87104
}

css/styles.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@
7777
background: rgba(255, 255, 255, 0.05);
7878
backdrop-filter: blur(10px);
7979
padding: 0.75rem 1.5rem;
80+
padding-left: 5px;
81+
padding-right: 5px;
8082
border-radius: 16px;
8183
border: 1px solid rgba(255, 255, 255, 0.1);
8284
box-sizing: border-box;

0 commit comments

Comments
 (0)