commit 7f918579ea5ca4a90f23d3d731e5cf35845369ec Author: Jonathan Dahan Date: Tue May 14 12:50:48 2024 -0400 initial website diff --git a/index.html b/index.html new file mode 100644 index 0000000..864d8f4 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..3175c36 --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ +body { + font-size: x-large +} + +li { + marker: none; + list-style: none +} + +a { + text-decoration: none; + color: inherit +} + +a:hover { + text-decoration: underline +} + +:root { + --red: #f21332; + --orange: #f27225; + --pink: #e20b88; + --yellow: #f2ad24; + --green: #00b249; + --blue: #1844b5; + --purple: #a033b3; +} + +li:nth-of-type(6n + 1):hover { color: var(--red) } +li:nth-of-type(6n + 2):hover { color: var(--orange) } +li:nth-of-type(6n + 3):hover { color: var(--pink) } +li:nth-of-type(6n + 4):hover { color: var(--green) } +li:nth-of-type(6n + 5):hover { color: var(--blue) } +li:nth-of-type(6n + 6):hover { color: var(--purple) } + +menu { + padding: 0; + margin: 0; +} + +nav { display: flex }