Skip to content

Commit 9e01396

Browse files
committed
add used languages to projects
1 parent d102929 commit 9e01396

4 files changed

Lines changed: 46 additions & 51 deletions

File tree

index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,18 @@ <h2 class="sectionHeading">Projekte</h2>
110110
<div class="projektContainer">
111111
<div class="projekt">
112112
<h3>Hausaufgaben-Manager</h3>
113-
<a href="https://erpicoding.github.io/Hausaufgaben-Manager">Öffnen</a>
114113
<img width="100%" src="./img/hausaufgaben-manager.png" />
114+
<p><span>HTML</span><span>CSS</span><span>JavaScript</span></p>
115+
<a href="https://erpicoding.github.io/Hausaufgaben-Manager">Öffnen</a>
115116
</div>
117+
116118
<div class="projekt">
117119
<h3>Verschlüsselungs Programm</h3>
120+
<img width="100%" src="./img/smg.png" />
121+
<p><span>HTML</span><span>CSS</span><span>JavaScript</span></p>
118122
<a href="https://erpicoding.github.io/secret-message-generator/"
119-
>Öffnen</a
123+
><span>Öffnen</span></a
120124
>
121-
<img width="100%" src="./img/smg.png" />
122125
</div>
123126
</div>
124127
</section>

style.css

Lines changed: 19 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -345,40 +345,38 @@ h6 {
345345
margin: 20px;
346346
padding-bottom: 0px;
347347
position: relative;
348+
background: linear-gradient(0deg, hsl(0, 0%, 5%), hsl(0, 0%, 10%));
349+
box-shadow: inset 0 1px 1px hsl(0, 0%, 30%);
350+
border-radius: 40px;
348351
}
349352
.projektContainer .projekt h3 {
350353
padding: 20px;
351354
text-align: center;
352-
border-radius: 40px 40px 0 0;
353-
background-color: hsl(0, 0%, 15%);
354-
background: linear-gradient(0deg, hsl(0, 0%, 5%), hsl(0, 0%, 10%));
355-
box-shadow: inset 0 1px 1px hsl(0, 0%, 30%);
356355
}
357-
.projektContainer .projekt img {
358-
border-radius: 0 0 40px 40px;
356+
.projektContainer .projekt p {
357+
height: 20px;
358+
margin: 20px;
359+
gap: 8px;
360+
}
361+
.projektContainer .projekt p span {
362+
margin-right: 8px;
363+
padding: 8px;
364+
background-color: hsl(0, 0%, 15%);
365+
border-radius: 8px;
359366
}
360367
.projektContainer .projekt a {
361-
width: 100px;
362368
height: 40px;
363369
margin: 20px;
364-
background-color: rgba(63, 207, 212, 0.2);
370+
padding: 5px;
371+
background-color: hsl(182, 54%, 27%);
365372
border-radius: 20px;
366-
box-shadow: inset 0 0 5px rgba(63, 207, 212, 0.25);
367-
-webkit-backdrop-filter: blur(4px);
368-
backdrop-filter: blur(4px);
369-
text-align: center;
370-
align-content: center;
373+
display: flex;
374+
align-items: center;
375+
justify-content: center;
371376
text-decoration: none;
377+
line-height: 20px;
372378
font-size: 20px;
373379
font-weight: 600;
374-
position: absolute;
375-
bottom: 0px;
376-
right: 0px;
377-
z-index: -1;
378-
}
379-
.projektContainer .projekt:hover a {
380-
z-index: 10;
381-
transition: 500ms;
382380
}
383381

384382
dialog.newRecord {

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: 20 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -413,47 +413,41 @@ h6 {
413413
padding-bottom: 0px;
414414
position: relative;
415415

416+
background: linear-gradient(0deg, hsl(0, 0%, 5%), hsl(0, 0%, 10%));
417+
box-shadow: inset 0 1px 1px hsl(0, 0%, 30%);
418+
border-radius: 40px;
419+
416420
h3 {
417421
padding: 20px;
418422
text-align: center;
419-
420-
border-radius: 40px 40px 0 0;
421-
background-color: $bg-grey;
422-
423-
background: linear-gradient(0deg, hsl(0, 0%, 5%), hsl(0, 0%, 10%));
424-
box-shadow: inset 0 1px 1px hsl(0, 0%, 30%);
425423
}
426-
img {
427-
border-radius: 0 0 40px 40px;
424+
p {
425+
height: 20px;
426+
margin: 20px;
427+
gap: 8px;
428+
span {
429+
margin-right: 8px;
430+
padding: 8px;
431+
background-color: hsl(0, 0%, 15%);
432+
border-radius: 8px;
433+
}
428434
}
429435

430436
a {
431-
width: 100px;
432437
height: 40px;
433438
margin: 20px;
439+
padding: 5px;
434440

435-
background-color: $petrol-ultra-transparent;
441+
background-color: $petrol-solid;
436442
border-radius: 20px;
437-
box-shadow: inset 0 0 5px $petrol-dark-transparent;
438-
backdrop-filter: blur(4px);
439443

440-
text-align: center;
441-
align-content: center;
444+
display: flex;
445+
align-items: center;
446+
justify-content: center;
442447
text-decoration: none;
448+
line-height: 20px;
443449
font-size: 20px;
444450
font-weight: 600;
445-
446-
position: absolute;
447-
bottom: 0px;
448-
right: 0px;
449-
450-
z-index: -1;
451-
}
452-
&:hover {
453-
a {
454-
z-index: 10;
455-
transition: 500ms;
456-
}
457451
}
458452
}
459453
}

0 commit comments

Comments
 (0)