From 381109211d56d794ec284c9ca2ebfd2e9a454187 Mon Sep 17 00:00:00 2001 From: NaJ Date: Sat, 15 Apr 2023 15:11:19 -0400 Subject: [PATCH 1/3] transfered last project files --- .vscode/settings.json | 3 ++ about.html | 11 +++++ contact.html | 11 +++++ index.html | 75 +++++++++++++++++++++++++++++ projects.html | 11 +++++ style/index.css | 108 ++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 219 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 about.html create mode 100644 contact.html create mode 100644 index.html create mode 100644 projects.html create mode 100644 style/index.css diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..6f3a2913 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/about.html b/about.html new file mode 100644 index 00000000..df104303 --- /dev/null +++ b/about.html @@ -0,0 +1,11 @@ + + + + + + Document + + +

ABOUT

+ + \ No newline at end of file diff --git a/contact.html b/contact.html new file mode 100644 index 00000000..7c293bd1 --- /dev/null +++ b/contact.html @@ -0,0 +1,11 @@ + + + + + + Document + + +

CONTACT

+ + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 00000000..52bd94e3 --- /dev/null +++ b/index.html @@ -0,0 +1,75 @@ + + + + + + + Document + + +
+

NYJAE LEE

+ +
+
+ +
+

NYJAE LEE

+ +

+ Here are some random words about my journey as a webDEV. Hope they are inspiring. +

+
+ +
+ +
+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+
+ + + + \ No newline at end of file diff --git a/projects.html b/projects.html new file mode 100644 index 00000000..266e620b --- /dev/null +++ b/projects.html @@ -0,0 +1,11 @@ + + + + + + Document + + +

PROJECTS

+ + \ No newline at end of file diff --git a/style/index.css b/style/index.css new file mode 100644 index 00000000..e8732fb3 --- /dev/null +++ b/style/index.css @@ -0,0 +1,108 @@ +/* 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; +} + +header { + background-color: lightgray; + padding: 20px; + margin-bottom: 15px; +} + +footer{ + background-color: lightgray; + text-align: center; + padding: 20px; +} + +.top-section{ + display: flex; + flex-direction: row; + justify-content: center; +} + +.description{ + padding: 20px; + +} + +.row{ + display: flex; + justify-content: space-evenly; + flex-direction: row; + padding: 20px; +} + +.portfolio-el{ + text-align: center; + +} + +p { + margin-top: 5px; +} + +button { + background-color: white; + color: black; + border: black solid 1px; + padding: 5px 10px +} + +button:hover { + background-color: black; + color: white; + border: white solid 1px; + +} + +button a{ + text-decoration: none; + color: inherit +} \ No newline at end of file From 8523356f1505f80143b2f7c95eae8cb4a22dec29 Mon Sep 17 00:00:00 2001 From: NaJ Date: Sat, 15 Apr 2023 15:41:37 -0400 Subject: [PATCH 2/3] navbar --- style/index.css | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/style/index.css b/style/index.css index e8732fb3..e2a2e812 100644 --- a/style/index.css +++ b/style/index.css @@ -61,6 +61,14 @@ footer{ padding: 20px; } +*{ + box-sizing: border-box; + padding: 0; + margin: 0; + max-width:100%; + border: 1px solid gray; +} + .top-section{ display: flex; flex-direction: row; @@ -88,6 +96,8 @@ p { margin-top: 5px; } + + button { background-color: white; color: black; @@ -105,4 +115,40 @@ button:hover { button a{ text-decoration: none; color: inherit +} + +@media(max-width: 800px){ + +} + +@media(max-width: 500px){ + header { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + + nav{ + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + } + + button{ + width: 40%; + margin: 1% 0 + } + + .top-section{ + display: flex; + flex-direction: column; + align-items: center; + + } + + .top-section div { + width: 90% + } } \ No newline at end of file From 8c92c57d1e41e010e05694bfa2b51eb478c12bc1 Mon Sep 17 00:00:00 2001 From: NaJ Date: Mon, 17 Apr 2023 12:16:03 -0400 Subject: [PATCH 3/3] mvp complete --- style/index.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/style/index.css b/style/index.css index e2a2e812..9d6422c5 100644 --- a/style/index.css +++ b/style/index.css @@ -118,7 +118,12 @@ button a{ } @media(max-width: 800px){ - + .row div { + width: 20%; + } + .top-section img { + width: 40%; + } } @media(max-width: 500px){ @@ -151,4 +156,15 @@ button a{ .top-section div { width: 90% } + + .row{ + display: flex; + flex-wrap: wrap; + justify-content: space-around; + } + + .row div { + width: 40%; + margin: 4% 0 + } } \ No newline at end of file