Skip to content

Commit a6aaa3c

Browse files
committed
noobs
1 parent 72fc4f7 commit a6aaa3c

File tree

10 files changed

+75
-2
lines changed

10 files changed

+75
-2
lines changed

frontend/dist/images/brian.png

9.82 KB
Loading

frontend/dist/images/dustin.png

118 KB
Loading

frontend/dist/images/rohald.png

11.1 KB
Loading

frontend/dist/styles/app.css

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

frontend/src/images/brian.png

9.82 KB
Loading

frontend/src/images/dustin.png

118 KB
Loading

frontend/src/images/rohald.png

11.1 KB
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@import "header", "dropdown", "project-list", "resource-list";
1+
@import "header", "dropdown", "project-list", "resource-list", "meet-the-noobs";
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.meet-the-noobs {
2+
margin-top: auto;
3+
header {
4+
@include flex(row, nowrap, center, center);
5+
padding: 1rem;
6+
font-size: 0.9rem;
7+
font-weight: 300;
8+
}
9+
details {
10+
padding: 1rem;
11+
summary {
12+
cursor: pointer;
13+
text-align: center;
14+
margin-bottom: 1rem;
15+
}
16+
li {
17+
@include flex(row, nowrap, flex-start, center);
18+
transition: background 0.3s ease;
19+
padding: 0.5rem;
20+
cursor: default;
21+
&:hover {
22+
@include bg(var(--primary-bg));
23+
img {
24+
transform: scale(1.3);
25+
}
26+
}
27+
img {
28+
width: 25px;
29+
margin-right: 1rem;
30+
transition: transform 0.3s;
31+
}
32+
.group {
33+
@include flex(column, nowrap, flex-start, flex-start);
34+
p {
35+
&:nth-child(1) {
36+
}
37+
&:nth-child(2) {
38+
font-weight: 300;
39+
}
40+
}
41+
}
42+
}
43+
}
44+
}

index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,35 @@ <h1> Hold up!</h1>
5353
<ul class="resource-list" id="resourceList">
5454
<!-- dynamic -->
5555
</ul>
56+
<div class="meet-the-noobs">
57+
<!-- <header>Developed by <i class="fa-solid fa-chevron-down"></i></header> -->
58+
<details>
59+
<summary>Developed by</summary>
60+
<ul>
61+
<li>
62+
<img src="/frontend/dist/images/dustin.png">
63+
<div class="group">
64+
<p>Dustin Usey</p>
65+
<p class="sub">Frontend</p>
66+
</div>
67+
</li>
68+
<li>
69+
<img src="/frontend/dist/images/brian.png">
70+
<div class="group">
71+
<p>Brian Jenson</p>
72+
<p class="sub">Backend</p>
73+
</div>
74+
</li>
75+
<li>
76+
<img src="/frontend/dist/images/rohald.png">
77+
<div class="group">
78+
<p>Rohald van Merode</p>
79+
<p class="sub">Backend</p>
80+
</div>
81+
</li>
82+
</ul>
83+
</details>
84+
</div>
5685
</section>
5786

5887

0 commit comments

Comments
 (0)