From 6d919f453fd39a96f3999f5249aa3a17fe5740d6 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Mon, 20 Mar 2023 15:02:41 +0100 Subject: odin project links and images --- static/style.css | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 static/style.css (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..032e2ce --- /dev/null +++ b/static/style.css @@ -0,0 +1,54 @@ +html { + background: black; + font-family: 'Open Sans', sans-serif; +} + +body { + color: white; +} + +header { + text-align: center; +} + +main { + padding-top: 2%; +} + +nav ul li a { + color: #f1f3f3; + font-size: smaller; +} + +nav ul { + margin: 0; + padding: 0; +} + +nav li { + display: inline-block; + list-style-type: none; +} + +nav a { + text-decoration: none; + display: block; + padding: 5px 6px 5px 6px; + color: black; +} + +#lists { + float: left; + padding-left: 10%; + max-width: 70%; +} + +#img-wrapper { + float: right; + padding-right: 10%; + max-width: 30%; +} + +img { + max-height: 500px; +} -- cgit v1.2.3