diff options
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 { |