From defb19e922bb09e52c495a9393f35479d48b1203 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Thu, 10 Aug 2023 17:04:42 +0530 Subject: Lab01: Create Basic Portfolio website w table --- Lab01/style.css | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 Lab01/style.css (limited to 'Lab01/style.css') diff --git a/Lab01/style.css b/Lab01/style.css new file mode 100644 index 0000000..cc34197 --- /dev/null +++ b/Lab01/style.css @@ -0,0 +1,57 @@ +body{ + padding: 0; + margin: 5%; + font-family: openSans, sans-serif; + color: #ffffff; + background: #2a2525; +} + +.header{ + text-align: center; + margin: 0; + padding: 5px 5px; + color: #f94413; +} + +nav{ + text-align: center; +} +nav ul{ + margin: 0; + list-style-type: none; + padding: 5px; +} +nav li { + display: inline-block; + margin: 2px; + padding: 2px; +} + +a{ + text-decoration: none; + color: rgb(26, 202, 237); +} + +a:hover{ + text-decoration: underline; +} + +p { + line-height: 1.25; +} + +td { + padding-left: 20px;padding-right: 20px; +} + +.section{ + padding: 25px; +} + +pre{ + padding: 10px; + border-radius: 10px; + white-space: pre-wrap; + word-wrap: break-word; + text-align: justify; +} -- cgit v1.2.3