diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..2083ee1 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,94 @@ +:root { + --main-bg-color: #568ea3; + --main-card-bg-color: #E96400; + --main-highlight-color: #a40e4c; +} + +::selection { + background: var(--main-highlight-color); /* WebKit/Blink Browsers */ +} + ::-moz-selection { + background: var(--main-highlight-color); /* Gecko Browsers */ +} + +* { + box-sizing: border-box; +} + +html { + height: 100%; + scroll-behavior: smooth; +} + +body { + margin: 0; + font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; + height: 100%; + background-color: var(--main-bg-color); +} + +h1 { + all: initial; +} + +h1 { + font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; + color: white; + padding-right: 8px; + font-size: 23.5px; +} + +a { + color: white; +} + +a:hover { + color: var(--main-highlight-color); +} + +.Navbar { + background-color: var(--main-card-bg-color); + display: flex; + padding: 16px; + font-family: 'Roboto', sans-serif; + color: white; +} + +.Navbar__Link { + padding-right: 8px; + font-size: 18.5px; +} + +.Navbar__Link-brand { + padding-right: 8px; + font-size: 18.5px; +} + +.Navbar__Link a, +h1 { + color: white; +} + +.Navbar__Link a:link { + text-decoration: none; +} + +.Navbar__Link a:visited { + text-decoration: none; +} + +.Navbar__Link a:hover { + text-decoration: underline; +} + +.Navbar__Link a:active { + text-decoration: underline; +} + +.Navbar__Items { + display: flex; +} + +.Navbar__Items--right { + margin-left: auto; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..27e5e5b --- /dev/null +++ b/index.html @@ -0,0 +1,35 @@ + + + + +
+