From eac30b699dd7820eee9656836e1ecaf5a8977e51 Mon Sep 17 00:00:00 2001 From: Dominic Matarese Date: Tue, 24 Aug 2021 16:36:19 +0000 Subject: Started writing site, added Resume, Git, Crypto, and Good Software links --- oldStyle.css | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 oldStyle.css (limited to 'oldStyle.css') diff --git a/oldStyle.css b/oldStyle.css new file mode 100644 index 0000000..05c1aed --- /dev/null +++ b/oldStyle.css @@ -0,0 +1,178 @@ +/* +Copyright (C) 2021 Dominic Matarese + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +html { + overflow-y: scroll; +} + +body { + /*background-color: #fff;*/ + background: linear-gradient(90deg, #eeeeee 40%, #E13E0F 100%); + color: #000; + font-family: sans-serif; + padding: 0; + margin: 0; +} + +pre, code { + margin: 0; +} + +a { + color: #005386; +} + +#header a, #sideNav a, #topNav a { + text-decoration: none; +} + +#sideNav a:hover { + background-color: #ddd; +} + +#topNav { + clear: both; + color: #06106B; + overflow: hidden; + background-color: #06106B; + padding: 2ex; + border-bottom: 4px solid #111111; +} + +#topNav a { + padding: 0.5ex 1ex; + color: #fff; +} + +#topNav a.title { + padding: 0ex 0ex; + color: #fff; +} + +#topNav a:hover { + background-color: #069; +} + +#title { + float: left; + margin: 0 1px 0 0; + padding: 1em 0; + width: 200px; +} + +h1 { + margin: 1em 1ex 0.5ex 0; + font-size: 1.4em; +} + +h2 { + margin: 1em 1ex 0.5ex 0; + font-size: 1.3em; +} + +h3 { + margin: 1em 1ex 0.5ex 0; + font-size: 1.0em; +} + +h4 { + margin: 1em 1ex 0.5ex 0; + font-size: 0.9em; +} + +#headerSubtitle { + font-size: 0.75em; + font-style: italic; + margin-left: 1em; +} + +#content { + clear: both; + margin: 0; + padding: 0; + /*background-color: #fff; + overflow: hidden;*/ +} + +#sideNav { + /*background-color: #fff;*/ + float: left; + margin: 0 1px 0 0; + padding: 1em 0; + border-right: 4px solid #06106B; + width: 200px; +} + +#sideNav ul { + margin: 0; + padding: 0; +} + +#sideNav li { + list-style: none; + padding: 0; + margin: 0; +} + +#sideNav li ul { + padding-left: 0.6em !important; +} + +#sideNav li a { + display: block; + margin: 0; + padding: 0.8ex 2em 0.8ex 1em; + font-size: 15pt; +} + +#main { + margin: 0 0 0 200px; + max-width: 50em; + padding: 1.5em; +} + +#footer { + position: fixed; + bottom: 0px; + text-align: center; + width: 100%; + color: #444444; +} + +#copyright { + float: left; + padding-bottom: 10px; + padding-top: 10px; + text-align: center; + bottom: 0px; + width: 100%; +} + +.left { + float: left; + margin: 0; + padding: 0; +} + +.right { + float: right; + margin: 0; + padding: 0; +} + +.hidden { + display: none; +} -- cgit v1.2.1