diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9 (patch) | |
tree | 443e91442a92ec7fb11e05ef7f137cfffb1d556d | |
parent | dark mode, colors, and tons of css updates (diff) | |
download | w-362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9.tar w-362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9.tar.gz w-362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9.tar.bz2 w-362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9.tar.xz w-362d6cf5b6b57ec98efc77f7935bd7d0c33ca2c9.zip |
dimmed the colors and added a log
-rw-r--r-- | about.html | 19 | ||||
-rw-r--r-- | css/main.css | 12 | ||||
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | projects.html | 2 |
4 files changed, 23 insertions, 16 deletions
diff --git a/about.html b/about.html index 08fec80..c8a2c93 100644 --- a/about.html +++ b/about.html @@ -11,20 +11,27 @@ </div><div class="body"> <h2>About</h2> -<p> I built this site for fun but it was also a great excuse to learn html, css, and git.</p> +<p> I built this site for fun but it was also a great excuse to learn html, css, +and git.</p> <h2>Logs</h2> <h3>12/09/23</h3> -<p>I just started my website on the 6th, I'm hosting it on kinsta and so far the only pages are the -homepage, projects page, and this page. I also started to add some basic css -and successfully got a working header and footer.</p> +<p>I just started my website on the 6th, I'm hosting it on kinsta and so far the +only pages are thehomepage, projects page, and this page. I also started to add +some basic css and successfully got a working header and footer.</p> +<h3>12/10/23</h3> +<p>I finally added some color to my website, it's currently dark mode with green +links, a lot of redish orange headers, and a few purple headers.</p> + <h2>Source</h2> -<p>The source code is <a href="http://github.com/porterswanstrom/web">here</a> and you can get it with:<br /><div class="code">git clone git@github.com:porterswanstrom/web</div></p> +<p>The source code is <a href="http://github.com/porterswanstrom/web">here</a> +and you can get it with:</p> +<div class="sh">git clone git@github.com:porterswanstrom/web</div> </div><div class="foot"> -Made by Porter Swanstrom. +Made by <a href="http://web-z4aqg.kinsta.page">Porter Swanstrom</a>. </div></div></body></html> diff --git a/css/main.css b/css/main.css index e3f067d..f9e13cb 100644 --- a/css/main.css +++ b/css/main.css @@ -12,23 +12,23 @@ html, body{ h1{ font-size:120%; - color:#EE6600; + color:#DD4400; padding-left:3.5% } h2{ font-size:125%; - color:#DD5500; + color:#DD4400; padding-left:1.2% } h3{ font-size:110%; - color:#CC88CC; + color:#BB77BB; padding-left:.3% } a{ font-size:110%; - color:#55EE55; + color:#55CC55; text-decoration:none } @@ -59,7 +59,7 @@ img{margin-left:4%;} padding-bottom:9pt } -.code{ - font:400 9.4pt mono; +.sh{ + font:400 77% mono; padding-left:3% } diff --git a/index.html b/index.html index 06339df..e5d1b9e 100644 --- a/index.html +++ b/index.html @@ -10,11 +10,11 @@ } </div><div class="body"> -<p>I'm currently still building my website, check the <a href="about.html">log</a> -to see what I've done so far.</p> +<p>I'm currently still building my website, check the +<a href="about.html">log</a> to see what I've done so far.</p> </div><div class="foot"> -Made by Porter Swanstrom. +Made by <a href="http://web-z4aqg.kinsta.page">Porter Swanstrom</a>. </div></div></body></html> diff --git a/projects.html b/projects.html index 9981ab2..8b974d0 100644 --- a/projects.html +++ b/projects.html @@ -16,6 +16,6 @@ My website. </div><div class="foot"> -Made by Porter Swanstrom. +Made by <a href="http://web-z4aqg.kinsta.page">Porter Swanstrom</a>. </div></div></body></html> |