diff options
author | Your Name <you@example.com> | 2025-04-23 03:46:19 -0600 |
---|---|---|
committer | Your Name <you@example.com> | 2025-04-23 03:46:19 -0600 |
commit | e080ab3fd2ffefd267b6e42f0616c747a8b58526 (patch) | |
tree | 688e436f14770690d376b43bede39e97510ae96d | |
parent | 5dcb4db29ee95d6f78605cfbf151efd1fe41e653 (diff) |
styles.css
-rw-r--r-- | styles.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..0b3b410 --- /dev/null +++ b/styles.css @@ -0,0 +1,58 @@ +body { + background-color: #1d2021; + color: #fbf1c7; + } + +h1 { + font-family: "Lucida Console", "Courier New", monospace; + color: #b8bb26; + } + +h2 { + font-family: "Lucida Console", "Courier New", monospace; + color: #b8bb26; + } + +p { + /* text-overflow: ellipsis; /\* will make [...] at the end *\/ */ + /* width: 800px; /\* change to your preferences *\/ */ + /* white-space: wrap; /\* paragraph to one line *\/ */ + /* overflow:hidden; /\* older browsers *\/ */ + font-family: "Lucida Console", "Courier New", monospace; + } + +table, th, td { + border: 2px solid; + border-collapse: collapse; +} + +a:link { + color: #fe8019; + background-color: transparent; + text-decoration: none; +} + +a:visited { + color: #d65d03; + background-color: transparent; + text-decoration: none; +} + +a:hover { + color: #fabd2f; + background-color: transparent; + text-decoration: underline; +} + +a:active { + color: yellow; + background-color: transparent; + text-decoration: underline; +} + +center { + margin: auto; + width: 50%; + border: 5px solid #a89984; + padding: 10px; +} |