diff --git a/css/index.css b/css/index.css index 7dd97920d..d8b76cdd0 100644 --- a/css/index.css +++ b/css/index.css @@ -1 +1,270 @@ -/* Compile your LESS file! */ \ No newline at end of file +/* 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; +} +body { + width: 100%; + background-color: lightgrey; + font-family: Arial, Helvetica, sans-serif; + padding: 3%; +} +header nav { + width: 100%; + display: flex; + justify-content: flex-end; + padding-bottom: 2%; + font-size: 0.8rem; +} +@media (max-width: 500px) { + header nav { + width: 90%; + background-color: plum; + } +} +a { + width: 10%; + display: flex; + justify-content: flex-end; +} +.intro { + display: flex; + flex-direction: column; + font-size: 1rem; + background-color: lightgrey; + width: 100%; +} +@media (max-width: 500px) { + .intro { + width: 90%; + background-color: skyblue; + } +} +img { + width: 225px; + height: 225px; + padding: 1%; +} +h1 { + font-size: 2rem; + padding: 1%; +} +h2 { + font-size: 1.1rem; + padding: 0.1rem; + margin: 0.4rem; +} +p { + padding: 1%; + font-size: 0.8rem; + color: black; +} +button { + display: flex; + align-items: center; + justify-content: flex-start; + font-size: 0.8rem; + background-color: gray; + color: white; + width: 10%; + padding: 1%; + margin: 1.5%; +} +@media (max-width: 500px) { + button button:hover { + background-color: purple; + } +} +.bio { + width: 100%; + display: flex; + align-items: center; + justify-content: flex-start; +} +.bio .bio-content { + width: 50%; +} +.bio .bio-content p { + font-size: 120%; +} +@media (max-width: 500px) { + .bio { + width: 90%; + background-color: royalblue; + font-weight: bold; + font-family: "Courier New", Courier, monospace; + } +} +h2 { + font-weight: bold; + padding: 0.5%; +} +div h3 { + font-weight: bold; + display: flex; + align-items: center; + justify-content: flex-start; + padding: 1%; +} +h3 { + font-weight: bold; + display: flex; + padding: 1%; +} +.bio-content table th { + display: flex; + align-items: center; + justify-content: flex-start; + flex-direction: column; + align-items: flex-start; + border: none; + border: 1px solid lightgray; + padding: 2%; +} +table, +td, +th { + border: 1px solid black; + padding: 1%; +} +table { + border-collapse: collapse; + width: 100%; +} +tr:nth-child(odd) { + background-color: #f2f2f2; +} +footer { + width: 100%; + background-color: slategray; + display: flex; + justify-content: center; + margin-top: 3%; + padding-top: 1%; +} diff --git a/css/mixins.css b/css/mixins.css new file mode 100644 index 000000000..e69de29bb diff --git a/image/myimage.jpeg b/image/myimage.jpeg new file mode 100644 index 000000000..d9949dffd Binary files /dev/null and b/image/myimage.jpeg differ diff --git a/index.html b/index.html index a7f9e3ad1..874c6509b 100644 --- a/index.html +++ b/index.html @@ -1,19 +1,100 @@ - + + - + - My Resume + -James Jordan-My Resume - + + + + -

My Resume

+
+ +
+ +
+ me +

James Jordan Resume - Web Dev

+

I Love To Code!

+

During my spare time I like producing music. So I am currently using my coding skills I learned at Lambda Schools + to work on a music app to help other producers.

+ +
+ +
+
+

Listen Up...

+

+ Here's a little bit about myself. Etiam lectus dui, vehicula a lectus + in, varius iaculis nisl. Praesent sed eros sit amet justo pharetra + sagittis. Proin maximus congue luctus. Sed tristique est vel neque + pretium, in pretium metus rhoncus. Sed non justo molestie leo egestas + convallis. Maecenas justo massa, sodales ac lorem sit amet, elementum + ultricies ante. Sed urna justo, accumsan ac diam eu, elementum tempor + magna. +

+
+
+

Stuff I'm Good At:

+ + + + + + + + +
Problem solvingweb developmentMusicExerciseQuick learner
+
+
+ +
+

Work History

+ + + + + + + + + + + + + + + + + + + + + + + + + +
YrsCompanyTitleTech Used
1XrosMarkMarketing RepSocial Media
2PSC SecuritySupervisorWindows
3UberDriverCell Phone
+
+ +
+ \ No newline at end of file diff --git a/less/index.less b/less/index.less index 191ce142e..8e24d6357 100644 --- a/less/index.less +++ b/less/index.less @@ -3,57 +3,179 @@ 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; +@import "variables.less"; +@import "mixins.less"; +@import "reset.less"; // * Set every element's box-sizing to border-box +* { + box-sizing: border-box; + // border: 2px solid black; } + body { - line-height: 1; + // height: 100%; + width: 100%; + background-color: @main; + // margin-right: 10%; + // flex-direction: column; + // justify-content: right; + font-family: Arial, Helvetica, sans-serif; + // align-content: center; + // border: 4px solid blue; + padding: 3%; } -ol, ul { - list-style: none; +// body { +// background-color: blue; +// } +header { + // border: 4px solid black; } -blockquote, q { - quotes: none; +header nav { + width: 100%; + // border: 2px solid red; + display: flex; + justify-content: flex-end; + padding-bottom: 2%; + // background-color: #87cefa; + font-size: 0.8rem; + // justify-content: flex-end; + @media (max-width: 500px) { + width: 90%; + background-color: plum; + } } -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; + +a { + width: 10%; + display: flex; + justify-content: flex-end; } -table { - border-collapse: collapse; - border-spacing: 0; + +.intro { + display: flex; + flex-direction: column; + font-size: 1rem; + // border: 2px solid cyan; + background-color: @main; + width: 100%; + + @media (max-width: 500px) { + width: 90%; + background-color: skyblue; + } } -/* Set every element's box-sizing to border-box */ -* { - box-sizing: border-box; +img { + width: 225px; + height: 225px; + padding: 1%; +} + +h1 { + font-size: 2rem; + padding: 1%; +} + +h2 { + font-size: 1.1rem; + padding: 0.1rem; + margin: 0.4rem; +} + +p { + padding: 1%; + font-size: 0.8rem; + color: @text; +} + +button { + .flex(); + justify-content: flex-start; + font-size: 0.8rem; + background-color: gray; + color: white; + width: 10%; + padding: 1%; + margin: 1.5%; + + @media (max-width: 500px) { + button:hover { + background-color: purple; + } + } +} + +.bio { + width: 100%; + .flex(); + // display: flex; + // padding: .1%; + // border: 2px solid black; + // div this is for divs in .bio + .bio-content { + width: 50%; + p { + font-size: 120%; + } + } + + @media (max-width: 500px) { + width: 90%; + background-color: royalblue; + font-weight: bold; + font-family: "Courier New", Courier, monospace; + } +} + +h2 { + font-weight: bold; + padding: 0.5%; +} +div h3 { + font-weight: bold; + .flex(); + padding: 1%; +} +h3 { + font-weight: bold; + display: flex; + padding: 1%; } -html, body { - height: 100%; +.bio-content table th { + .flex(); + flex-direction: column; + // justify-content: flex-end; + align-items: flex-start; + border: none; + border: 1px solid lightgray; + padding: 2%; +} +table, +td, +th { + border: 1px solid black; + padding: 1%; +} + +table { + border-collapse: collapse; + width: 100%; } +// th, td { +// text-align: left; +// padding: 8px; + +// } +tr:nth-child(odd) { + background-color: #f2f2f2; +} + +footer { + width: 100%; + background-color: slategray; + display: flex; + justify-content: center; + margin-top: 3%; + padding-top: 1%; +} diff --git a/less/mixins.less b/less/mixins.less new file mode 100644 index 000000000..80fd8f878 --- /dev/null +++ b/less/mixins.less @@ -0,0 +1,5 @@ +.flex() { + display: flex; + align-items: center; + justify-content: flex-start; +} diff --git a/less/reset.less b/less/reset.less new file mode 100644 index 000000000..f590de1a1 --- /dev/null +++ b/less/reset.less @@ -0,0 +1,124 @@ +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; +} \ No newline at end of file diff --git a/less/variables.less b/less/variables.less new file mode 100644 index 000000000..bd62c568a --- /dev/null +++ b/less/variables.less @@ -0,0 +1,3 @@ +@main: lightgrey; +@accent: grey; +@text: black;