Skip to content

Commit e6433d7

Browse files
committed
add Links section
1 parent 409c322 commit e6433d7

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,14 @@ <h3>Programmiersprachen und andere Technologien</h3>
5656
<p id="languageLogoSource"></p>
5757
</div>
5858
</section>
59-
<section class="contentSection" id="section2">
59+
<section class="contentSection linksBg" id="section2">
6060
<h2 class="sectionHeading">Links</h2>
61+
<a href="https://github.com/erpicoding" target="_blank" class="firstLink"
62+
>Github</a
63+
>
64+
<a href=""></a>
65+
<a href=""></a>
66+
<a href=""></a>
6167
</section>
6268
<section class="contentSection" id="section3">
6369
<h2 class="sectionHeading">Projekte</h2>

linksBackground.png

1.2 MB
Loading

style.css

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
margin: 0px;
1212
padding: 0px;
1313
color: white;
14+
scroll-behavior: smooth;
1415
}
1516
html {
1617
width: 100%;
17-
scroll-behavior: smooth;
1818
}
1919
/*header bild*/
2020
header {
@@ -181,3 +181,31 @@ button.language:hover {
181181
clear: left;
182182
font-size: 12px;
183183
}
184+
185+
.linksBg {
186+
display: flex;
187+
flex-direction: column;
188+
min-height: 100vh;
189+
background: linear-gradient(var(--petrol-transparent), rgba(0, 0, 0, 0.7)),
190+
url(./linksBackground.png) center/cover no-repeat;
191+
align-items: center;
192+
}
193+
.linksBg a {
194+
width: 200px;
195+
height: 40px;
196+
margin: 20px;
197+
198+
background-color: var(--petrol-ultra-transparent);
199+
border-radius: 20px;
200+
box-shadow: inset 0 0 5px var(--petrol-dark-transparent);
201+
backdrop-filter: blur(4px);
202+
203+
text-align: center;
204+
align-content: center;
205+
text-decoration: none;
206+
font-size: 20px;
207+
font-weight: 600;
208+
}
209+
.linksBg h2 {
210+
margin-bottom: 60px;
211+
}

0 commit comments

Comments
 (0)