From 9bf6d99238081a9d5978774a98d01a9f2e6ed234 Mon Sep 17 00:00:00 2001 From: karmaeiic <46303520+karmaeiic@users.noreply.github.com> Date: Tue, 14 Apr 2020 18:53:43 -0700 Subject: [PATCH] User Interface 2 --- index.html | 32 ++++++- style/index.css | 227 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 257 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index d01f779ff..d5d3f5c0f 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,41 @@ + + Document + - +

Daniel Beggs

+
+ +
+ +

An Introduction to my Site

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure + dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

+ my pic + +
+ my pic + my pic + my pic + my pic +

Some text will go here to discribe all the projects to the left

+
+ +
+ Instagram + My Music +
+ \ No newline at end of file diff --git a/style/index.css b/style/index.css index 440e53514..8dfb267ff 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,226 @@ -/* Add CSS styling here */ \ No newline at end of file +/* Add CSS styling here */ + + +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + + +/* HTML5 display-role reset for older browsers */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} + +body { + line-height: 1; +} + +ol, +ul { + list-style: none; +} + +blockquote, +q { + quotes: none; +} + +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ''; + content: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +* { + background-color: #eeeeee; +} + +h1 { + text-align: center; + font-size: 60px; + font-family: Arial, Helvetica, sans-serif; + color: #222831; + margin: 40px; +} + +ul.nav { + display: flex; + justify-content: space-evenly; + flex-direction: row; + margin: 30px; +} + +li a { + background-color: #00adb5; + color: #393e46; + padding: .7em 1em; + text-decoration: none; + text-transform: uppercase; + border-radius: 12px; +} + +li a:hover { + color: #7eb9be; +} + +h2 { + font-size: 40px; + text-align: center; + color: #222831; + margin: 20px; +} + +p { + line-height: 1.5; + padding-left: 50px; + padding-right: 50px; +} + +img.main { + padding-top: 30px; + display: block; + justify-content: center; + width: 100%; +} + +img.pics { + display: flex; + justify-content: flex-start; + margin: 20px; +} + +div h3 { + display: inline; + vertical-align: top; + margin: 30px; + font-size: 15px; +} + +div.contact { + background-color: grey; + padding: 30px; +} + +button { + display: flex; + justify-content: center; + background-color: #00adb5; + color: #393e46; + padding: .7em 1em; + text-decoration: none; + text-transform: uppercase; + border-radius: 12px; +} + +button:hover { + color: #7eb9be; + background-color: red; +} \ No newline at end of file