Skip to content

Commit 53acd97

Browse files
committed
Add footer with disclaimer
1 parent 2201582 commit 53acd97

File tree

2 files changed

+31
-8
lines changed

2 files changed

+31
-8
lines changed

dist/index.html

+20-7
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ <h1>RUNIC</h1>
2727
</header>
2828

2929
<main>
30-
<article>
31-
<section class="introduction-section">
30+
<article class="introduction-article">
31+
<section>
3232
<p>
3333
This is a fan-made website that helps you read the
3434
in-game language of
@@ -87,11 +87,24 @@ <h2>Testimonials</h2>
8787
<div class="testimonials-container"></div>
8888
</article>
8989

90-
<article>
91-
<section>
92-
<p>Made by Aryan Pingle.</p>
93-
</section>
94-
</article>
90+
<footer>
91+
<p>
92+
Made by
93+
<a href="https://github.com/aryanpingle" target="_blank"
94+
>Aryan Pingle</a
95+
>. This project is
96+
<a href="https://github.com/aryanpingle" target="_blank"
97+
>open source on GitHub</a
98+
>.
99+
</p>
100+
<p>
101+
I do not own any part of "Tunic", or have any relation to
102+
the development or production team.<br />
103+
I am simply a fan who loves this beautiful,
104+
<b>beautiful</b> game.<br />
105+
Praise be to indie games.
106+
</p>
107+
</footer>
95108
</main>
96109
</body>
97110
</html>

src/index.css

+11-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ article {
4646
margin: 3em auto;
4747
}
4848

49-
section {
49+
section, footer {
5050
max-width: var(--section-width);
5151
margin: auto;
5252
}
@@ -74,6 +74,16 @@ button {
7474
cursor: pointer;
7575
}
7676

77+
a {
78+
filter: drop-shadow(0 0 0.2em currentColor);
79+
color: orange;
80+
text-underline-offset: 0.2em;
81+
}
82+
83+
footer {
84+
border-top: 2px solid #242424;
85+
}
86+
7787
/* The fancy orb stuff */
7888

7989
.fancy-orb-background {

0 commit comments

Comments
 (0)