summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html1
-rw-r--r--style.css17
2 files changed, 18 insertions, 0 deletions
diff --git a/index.html b/index.html
index e7dd4d9..31e4201 100644
--- a/index.html
+++ b/index.html
@@ -23,6 +23,7 @@
<li><a href="https://ccgkyle.itch.io/">My itch.io</a></li>
<li><a href="https://github.com/CoreChg/TransitAPI">My Minecraft TransitAPI</a></li>
</ul>
+ <span class="end">Site made with &lt;3 by Kyle Gunger</span>
</div>
</body>
</html>
diff --git a/style.css b/style.css
index 4d206e6..367fdd2 100644
--- a/style.css
+++ b/style.css
@@ -22,3 +22,20 @@ a {
a:hover {
color: black;
}
+
+span.end {
+ display: block;
+ margin-top: 10px;
+ text-emphasis: bold;
+}
+
+span.end::before {
+ display: block;
+
+ width: 100%;
+ height: 3px;
+
+ background-color: #bbb;
+
+ content: '';
+} \ No newline at end of file