diff options
author | squibid <me@zacharyscheiman.com> | 2023-03-11 12:41:48 -0500 |
---|---|---|
committer | squibid <me@zacharyscheiman.com> | 2023-03-11 12:41:48 -0500 |
commit | 721630bec0f887e1bb2f9c5e7135b560318208c8 (patch) | |
tree | b624f613af81e01d462e9ae400a07a08af95ef47 /blog | |
parent | 53ba59c39dab56533ec965bfdfc28bd98ab38db0 (diff) | |
download | site-721630bec0f887e1bb2f9c5e7135b560318208c8.tar.gz site-721630bec0f887e1bb2f9c5e7135b560318208c8.tar.bz2 site-721630bec0f887e1bb2f9c5e7135b560318208c8.zip |
rewrite site and stop using iframes
Diffstat (limited to '')
-rw-r--r-- | blog.html | 29 | ||||
-rw-r--r-- | blog/.html | 0 | ||||
-rw-r--r-- | blog/style.css | 13 | ||||
-rw-r--r-- | bloglist.html | 3 |
4 files changed, 42 insertions, 3 deletions
diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..ee59394 --- /dev/null +++ b/blog.html @@ -0,0 +1,29 @@ +<!DOCTYPE HTML> +<html lang="en"> + <head> + <title>Squibid's Blog</title> + <link rel="stylesheet" href="style.css"> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + </head> + <style type="text/css"> + p { + font-size: 2.5vw; + } + #date { + font-size: 1.5vw; + float: right; + color: white; + } + </style> + <body> + <div class="master"> + <header> + <h1 id="font"><span style="color: #ED8182;">Squibid's</span> Blog</h1> + </header> + <hr style="color: #f7f7f7;"> + <p> <!-- script marker blog --> + </p> <!-- script marker blog --> + </div> + </body> +</html> diff --git a/blog/.html b/blog/.html deleted file mode 100644 index e69de29..0000000 --- a/blog/.html +++ /dev/null diff --git a/blog/style.css b/blog/style.css index 83ff097..1f346fb 100644 --- a/blog/style.css +++ b/blog/style.css @@ -5,3 +5,16 @@ html { font-size: 2vh; color: white; } + +a:link, a:visited { + background-color: #f44336; + color: white; + padding: 1px 1px; + text-align: center; + text-decoration: none; + display: inline-block; +} + +a:hover, a:active { + background-color: red; +} diff --git a/bloglist.html b/bloglist.html deleted file mode 100644 index 0004ac3..0000000 --- a/bloglist.html +++ /dev/null @@ -1,3 +0,0 @@ -<p style="font-family: sans-serif; color: white;"> -2023 Mar 10 - <a href="https://squi.bid/blog/state-of-the-site.html" target="top" id="link">state-of-the-site</a><br> -</p> |