diff options
Diffstat (limited to 'main.css')
| -rw-r--r-- | main.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/main.css b/main.css new file mode 100644 index 0000000..04d7aeb --- /dev/null +++ b/main.css @@ -0,0 +1,56 @@ +html,body { + background: black; + font-family: Monospace; + color: lightgreen; +} + +#website-container { + width: 620px; +} + +ul.navigation { + list-style-type: none; + display: block; +} + +ul.navigation li { + display: inline; +} + +ul.navigation a { + color: lightgreen; + text-decoration: none; +} + +ul.navigation a:hover { + text-decoration: underline; +} + +ul.posts { + list-style-type: none; +} + +ul.posts a { + color: lightgreen; + text-decoration: none; +} + +ul.posts a:hover { text-decoration: underline; } + +/* resources.html styles */ +.home-social-links a { + color: lightgreen; + text-decoration: none; +} + +/* Base Tags */ +img { width: 100%; } + +a { + color: lightgreen; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +}
\ No newline at end of file |
