Skip to content

Commit 53975c0

Browse files
committed
add technologies section to navbar
1 parent 41e7e84 commit 53975c0

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

index.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,28 @@
2727
<img class="profileImage" src="./img/profileImage.png" />
2828
</a>
2929
<div class="linkContainer" id="linkContainer">
30-
<a class="navbarLink" href="#section1">Über Mich</a>
31-
<a class="navbarLink" href="#section2">Projekte</a>
30+
<a class="navbarLink" href="#sectionInfo">Über Mich</a>
31+
<a class="navbarLink" href="#sectionTechnologies">Technologien</a>
32+
<a class="navbarLink" href="#sectionProjects">Projekte</a>
3233
</div>
3334
<button class="navbarButton" onclick="navbarToggle()">Menu</button>
3435
</nav>
3536
<div class="banner animatedBorder">
3637
<h1>ERPI CODING</h1>
3738
<h2>Web-Developer</h2>
38-
<a href="#section2" class="bannerLink">Projekte &rarr;</a>
39+
<a href="#sectionProjects" class="bannerLink">Projekte &rarr;</a>
3940
</div>
4041
</header>
4142
<main>
42-
<section class="contentSection" id="section1">
43+
<section class="contentSection" id="sectionInfo">
4344
<h2 class="sectionHeading">Über Mich</h2>
4445
<p class="infotext">
4546
Ich programmiere seit 2023 Webseiten mit HTML, CSS und JavaScript.
4647
2025 habe ich auch angefangen mit node.js Webserver und Backends zu
4748
programmieren.
4849
</p>
50+
</section>
51+
<section class="contentSection" id="sectionTechnologies">
4952
<h2>Programmiersprachen und andere Technologien</h2>
5053
<div class="technologies">
5154
<div class="technology">
@@ -95,7 +98,7 @@ <h2>Programmiersprachen und andere Technologien</h2>
9598
</div>
9699
</section>
97100
</main>
98-
<section class="contentSection" id="section2">
101+
<section class="contentSection" id="sectionProjects">
99102
<h2 class="sectionHeading">Projekte</h2>
100103
<div class="projektContainer">
101104
<div class="projekt">

style.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ header {
141141
}
142142
}
143143
.showLinks {
144-
height: 120px;
144+
height: 180px;
145145
transition: 500ms;
146146
}
147147

@@ -213,7 +213,6 @@ body {
213213
}
214214
}
215215
section.contentSection {
216-
min-height: 500px;
217216
padding-top: 80px;
218217
}
219218

style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ header {
182182
}
183183
.showLinks {
184184
// for each link 60px height in this class
185-
height: 120px;
185+
height: 180px;
186186
transition: 500ms;
187187
}
188188
.banner {
@@ -272,7 +272,6 @@ body {
272272
}
273273

274274
section.contentSection {
275-
min-height: 500px;
276275
padding-top: 80px;
277276
}
278277
h1,

0 commit comments

Comments
 (0)