diff --git a/index.html b/index.html index d01f779ff..39ebae870 100644 --- a/index.html +++ b/index.html @@ -3,9 +3,58 @@ - Document + Sample Portfolio + + +
+

Elijah Kim

+ + + Canyons overcast +
+ +
+
+ Beach waves +

Project 1

+
+ +
+ Mountain peaks with little snow +

Project 2

+
+ +
+ The coast +

Project 3

+
+ +
+ A white flower +

Project 4

+
+ +
+ night sky with trees and starts around +

Project 5

+
+ +
+ bird flying near waterfall +

Project 6

+
+
+ + \ No newline at end of file diff --git a/style/index.css b/style/index.css index 440e53514..8761ca11e 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,148 @@ -/* 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; +} + +* { + box-sizing: border-box; +} + +html { + font-size: 62.5%; +} + +header { + display: flex; + flex-direction: row; + /*border: solid 1px grey; */ + justify-content: space-between; + flex-wrap: wrap; + margin-bottom: 5%; +} + +header h1 { + font-size: 3rem; + width: 40%; +} + +header nav a { + text-decoration: none; + font-size: 1.6rem; + + border: 1px solid black; + padding: 2%; + margin-bottom: 5%; +} + +header nav { + width: 45%; + display: flex; + flex-direction: row; + justify-content: space-between; + margin-right: 2%; + + vertical-align: top; +} + +header img { + width: 60%; + margin-left: 20%; +} + +.projects { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; + + width: 80% + margin: 0 auto; + text-align: center; + + font-size: 2rem; +} + +.projects img { + width: 80%; + height: 80%; + /*border: 5px solid grey; */ +} + +.first, .second, .third, .fourth, .fifth, .sixth { + width: 30%; +} + +footer { + display: flex; + flex-direction: row; + justify-content: center; + flex-wrap: wrap; + + width: 100%; + height: 10rem; + /*border: 1px solid white; */ + margin-bottom: 5%; + + background-color: salmon; + font-size: 2rem; + +} + +footer button { + margin: 3% 0; + padding: 2%; + + text-decoration: none; + color: black; +} + + + + +