diff options
author | Your Name <you@example.com> | 2025-04-23 19:42:48 -0600 |
---|---|---|
committer | Your Name <you@example.com> | 2025-04-23 19:42:48 -0600 |
commit | afdc2b0f757267d53e93f291e6791bd7643f8de4 (patch) | |
tree | 9ca7299bdafebfe385696dbfb39b79713ba11a2b /styles.css | |
parent | a68d43e99cabe768455b9965fa0f45ec7178a319 (diff) |
index css
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -1,32 +1,38 @@ body { - background-color: #1d2021; + font-family: "Lucida Console", "Courier New", monospace; + background-color: #282828; color: #fbf1c7; + font-size: 18px; } h1 { - font-family: "Lucida Console", "Courier New", monospace; font-size: 38px; - color: #b8bb26; + color: #fe8019; } h2 { - font-family: "Lucida Console", "Courier New", monospace; - font-size: 30px; + font-size: 32px; color: #b8bb26; } +h3 { + font-size: 26; + color: #98971a; + } + 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; - font-size: 18px; } table, th, td { border: 2px solid; border-collapse: collapse; + font-size: 20; + margin: 10px; + padding: 10px; } a:link { |