Skip to content

Commit afb103e

Browse files
include home btn
1 parent 09a2428 commit afb103e

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

assets/favicon-96x96.png

631 Bytes
Loading

index.html

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
</head>
1515

1616
<body>
17+
<div class="logo-container">
18+
<a href="https://creativecoding.claudioweckherlin.com">
19+
<img src="/assets/favicon-96x96.png" alt="Logo">
20+
</a>
21+
</div>
1722
<script src="sketch.js"></script>
1823
</body>
1924

style.css

+12
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,15 @@ html, body {
1212
canvas {
1313
display: block;
1414
}
15+
16+
.logo-container {
17+
position: fixed;
18+
top: 0;
19+
left: 0;
20+
padding: 1rem;
21+
padding-left: 2rem;
22+
23+
img {
24+
width: 2vw;
25+
}
26+
}

0 commit comments

Comments
 (0)