diff options
author | o5pxels <o5pxels@gmail.com> | 2021-04-09 15:50:44 -0500 |
---|---|---|
committer | o5pxels <o5pxels@gmail.com> | 2021-04-09 15:50:44 -0500 |
commit | 0282f83454510bf34850da202b6ab2ef8b7dfbe5 (patch) | |
tree | 3f349bec829c2ec274a6e2e6658891718bbe893c | |
parent | 0978643a61d49516d15f52f8bca98900edc60ba2 (diff) | |
download | personal-website-0282f83454510bf34850da202b6ab2ef8b7dfbe5.tar.xz personal-website-0282f83454510bf34850da202b6ab2ef8b7dfbe5.zip |
Add website to projects, fix CSS comment, add HTML and CSS comment
-rw-r--r-- | assets/css/main.css | 8 | ||||
-rw-r--r-- | index.html | 9 |
2 files changed, 15 insertions, 2 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 4340a36..8b4b3db 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -109,7 +109,13 @@ div.project.js h2:after { div.project.css h2:after { font-style: normal; - content: ' // CSS'; + content: ' /* CSS */'; + color: #d3d3d3; +} + +div.project.htmlcss h2:after { + font-style: normal; + content: ' <!-- HTML and CSS -->'; color: #d3d3d3; } @@ -79,11 +79,18 @@ <p id="description">
Projects are listed by most recent to least recent updates.
</p>
+ <div class="project htmlcss">
+ <h2>fivepixels.me</h2>
+ <p>
+ The website you are viewing right now.
+ </p>
+ <a href="https://github.com/FivePixels/fivepixels.github.io">Source code</a>
+ </div>
<div class="project js">
<h2>Tribble</h2>
<p>
A discord.js payment bot that creates tickets and automatically
- validates payments.
+ validates payments using the Gmail API.
</p>
<a href="https://github.com/FivePixels/Tribble">Source code</a>
</div>
|