diff --git a/colorpallete.png b/colorpallete.png new file mode 100644 index 0000000..d0ace96 Binary files /dev/null and b/colorpallete.png differ diff --git a/css/master.css b/css/master.css index 50802bf..851dc63 100644 --- a/css/master.css +++ b/css/master.css @@ -1,9 +1,57 @@ +:root { + --color-pallete-red: #a80000; + --color-pallete-dark-red: #731010; + --color-pallete-dark-grey: #1f1f1f; + --color-pallete-grey: #707070; + --color-pallete-light-grey: #d4d4d4; +} + * { margin: 0; padding: 0; box-sizing: border-box; + color: var(--color-pallete-light-grey); + font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; } + +::selection { + background-color: var(--color-pallete-red); +} + +a { + text-decoration: none; +} +a:visited { + color: var(--color-pallete-light-grey); +} + +html { + background-color: var(--color-pallete-dark-grey); +} + body { text-align: center; +} + +#header { + display: flex; + height: 100vh; + justify-content: center; + align-items: center; background-color: black; +} + +#content { + background-color: var(--color-pallete-dark-grey); +} + +#footer { + background-color: black; +} + +.content-break { + width: 45vw; + height: 2px; + background-color: red; + color: red; } \ No newline at end of file diff --git a/index.html b/index.html index 21b83aa..6538c08 100755 --- a/index.html +++ b/index.html @@ -9,26 +9,37 @@ Hex Studios -
- - - + +
+
+
+ \ No newline at end of file