From 0d7b96a576a1b320cbc00003382925e95c9f5f6f Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Fri, 10 Aug 2018 23:59:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20GRAPHIC=20DESIGN=20IS=20MY=20PAS?= =?UTF-8?q?SION?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- img/logo.svg | 1 + index.html | 16 ++++++++++++++++ style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 66 insertions(+) create mode 100644 img/logo.svg create mode 100644 index.html create mode 100644 style.css diff --git a/img/logo.svg b/img/logo.svg new file mode 100644 index 0000000..e853d1a --- /dev/null +++ b/img/logo.svg @@ -0,0 +1 @@ +Asset 1 \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..b66dff2 --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + Hacks 'R' Us + + + +
+

Hacks 'R' Us Logo

+ +
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..1afd701 --- /dev/null +++ b/style.css @@ -0,0 +1,49 @@ +div.container { + max-width: 700px; + margin: 0 auto; +} + +ul.people { + display: flex; + padding: 0px ; + align-items: center; + justify-content: center; +} + +ul.people>li { + padding: 2px; + background-color: #adadad; + list-style: none; + box-shadow: 4px 4px; + margin-right: 10px; + transition: all 0.1s ease-in-out; +} + +ul.people>li:nth-of-type(4n+1) { + background-color: #ea1a5b; +} + +ul.people>li:nth-of-type(4n+2) { + background-color: #f48120; +} + +ul.people>li:nth-of-type(4n+3) { + background-color: #73bd45; +} + +ul.people>li:nth-of-type(4n) { + background-color: #0862ad; +} + +ul.people>li:hover { + transform: translate(-2px, -2px); + box-shadow: 8px 8px; + /*z-index: -1;*/ +} +ul.people>li>a { + color: #fff; + text-decoration: none; + font-size: 20px; + font-family: Comic Sans MS +} +