diff --git a/README.md b/README.md index 5912e2c97..211c020dd 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ For this project you will be building a digital resume from scratch. You will be ## Task 1: Set Up The Project With Git -- [ ] Create a forked copy of this project. +- [ ] Create a forked copy of this project.. - [ ] Add your project manager as collaborator on Github. -- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!). +- [ ] Clone your OWN version of the repository (Not Lambda's by mistake!)... - [ ] Create a new branch: git checkout -b ``. - [ ] Implement the project on your newly created `` branch, committing changes regularly. -- [ ] Push commits: git push origin ``. +- [ ] Push commits: git push origin ``... Follow these steps for completing your project. diff --git a/about.index b/about.index new file mode 100644 index 000000000..e69de29bb diff --git a/css/index.css b/css/index.css index 7dd97920d..e84310a27 100644 --- a/css/index.css +++ b/css/index.css @@ -1 +1,242 @@ -/* Compile your LESS file! */ \ No newline at end of file +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; + margin: 10px; +} +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; +} +/* Set every element's box-sizing to border-box */ +* { + box-sizing: border-box; +} +html, +body { + height: 100%; +} +html { + font-size: 62.5%; +} +body { + line-height: 1; + background-color: lightgrey; +} +header { + background-color: darkseagreen; +} +nav { + display: flex; + justify-content: space-between; + flex-direction: row; + align-items: right; + text-align: right; + margin-left: 250px; + margin-right: 10px; + padding-bottom: 20px; + font-style: none; +} +a { + text-decoration: none; + color: black; + font-size: 2rem; + font-style: italic; +} +.name { + display: flex; + flex-direction: column; +} +h1 { + font-size: 4rem; + font-style: bold; + padding-top: 20px; +} +h2 { + font-size: 3rem; + font-style: italic; +} +img { + margin: 10px; + border: 3rem; + height: 400px; +} +.Sarah { + display: flex; + justify-content: space-around; + margin-top: 30px; +} +.bio { + font-size: 2.5rem; + font-style: italic; + width: 50%; + margin-top: 50px; + line-height: 30px; + text-align: left; +} +.skills { + font-size: 3rem; + font-style: italic; + text-align: center; + padding: 10px; + margin-top: 20px; + background-color: darkseagreen; +} +ul { + font-size: 2rem; + font-style: italic; + display: flex; + flex-direction: column; + justify-content: space-between; + flex-wrap: nowrap; + background-color: darkseagreen; + margin: 10px; +} +li { + text-align: center; + margin: 5px; +} +.skill1 { + background-color: lightgrey; + padding: 5px; +} +.skill2 { + background-color: darkseagreen; + padding: 5px; +} +.skill3 { + background-color: lightgrey; + padding: 5px; + padding-bottom: 20px; +} +footer { + background-color: darkseagreen; +} +.n2 { + display: flex; + justify-content: center; +} +.contact { + background-color: lightgrey; +} +button { + background-color: lightgrey; + margin: 30px 175px; + height: 50px; + border: dotted; +} diff --git a/css/index.images b/css/index.images new file mode 100644 index 000000000..e69de29bb diff --git a/headshotcopy.jpg b/headshotcopy.jpg new file mode 100644 index 000000000..a9fc09781 Binary files /dev/null and b/headshotcopy.jpg differ diff --git a/home.index b/home.index new file mode 100644 index 000000000..e69de29bb diff --git a/index.html b/index.html index a7f9e3ad1..9e933751f 100644 --- a/index.html +++ b/index.html @@ -12,8 +12,44 @@ - -

My Resume

- + +
+
+

Sarah Mucho

+

Web Developer

+
+ +
+ +
+
+

+ Sarah is a singer-songwriter, ex bartender and a web developer. Through her experience and unique perspective, she has + found a way to merge all of these skills and develop aa reputation + as the "musicians' coder". However, she does not exclusively work with + musicians, she is an equal opportunity web developer. Please do reach out + if you are in need of someone with both the skills and a creative edge.

+
+ +
Special Skills +
    +
  • Customer Service - Years of experience working in bars and working around people.
  • +
  • Performace skills - I know how to lead and run a room.
  • +
  • Creative skills - an understanding of how to add style to functionality.
  • +
+ + \ No newline at end of file diff --git a/less/contact.index b/less/contact.index new file mode 100644 index 000000000..e69de29bb diff --git a/less/home.html b/less/home.html new file mode 100644 index 000000000..e69de29bb diff --git a/less/home.index b/less/home.index new file mode 100644 index 000000000..e69de29bb diff --git a/less/index.less b/less/index.less index 191ce142e..247bd80db 100644 --- a/less/index.less +++ b/less/index.less @@ -1,9 +1,3 @@ -// Is this working? -/* 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, @@ -31,6 +25,7 @@ footer, header, hgroup, menu, nav, section { } body { line-height: 1; + margin: 10px; } ol, ul { list-style: none; @@ -56,4 +51,140 @@ table { html, body { height: 100%; } +html { + font-size: 62.5%; + } + +body { + line-height: 1; + background-color: lightgrey; +} + +@backgroundColor: darkseagreen; +@fontStyle: italic; + +header { + background-color: @backgroundColor; +} + +nav { + + display: flex; + justify-content: space-between; + flex-direction: row; + align-items: right; + text-align: right; + margin-left: 250px; + margin-right: 10px; + padding-bottom: 20px; + font-style: none; +} + +a { + text-decoration: none; + color: black; + font-size: 2rem; + font-style: @fontStyle; +} + +.name { + display: flex; + flex-direction: column; +} + +h1 { + font-size: 4rem; + font-style: bold; + padding-top: 20px; +} + +h2 { + font-size: 3rem; + font-style: @fontStyle; +} + +img { + margin: 10px; + border: 3rem; + height: 400px +} + +.Sarah { + display: flex; + justify-content: space-around; + margin-top: 30px; +} + +.bio { + font-size: 2.5rem; + font-style: @fontStyle; + width: 50%; + margin-top: 50px; + line-height: 30px; + text-align: left; + } + + .skills { + font-size: 3rem; + font-style: italic; + text-align: center; + padding: 10px; + margin-top: 20px; + background-color: @backgroundColor; +} + +ul { + font-size: 2rem; + font-style: @fontStyle; + display: flex; + flex-direction: column; + justify-content: space-between; + flex-wrap: nowrap; + background-color: @backgroundColor; + margin: 10px; +} + +li { + text-align: center; + margin: 5px; +} + +.skill1 { + background-color: lightgrey; + padding: 5px; +} + +.skill2 { + background-color: @backgroundColor; + padding: 5px; +} + +.skill3 { + background-color: lightgrey; + padding: 5px; + padding-bottom: 20px; +} + +footer { + background-color: @backgroundColor; +} + +.n2 { + display: flex; + justify-content: center; +} + +.contact { + background-color: lightgrey; +} + +button { + background-color: lightgrey; + margin: 30px 175px; + height: 50px; + border: dotted; +} +@media (max-width: 500px) { + +} \ No newline at end of file diff --git a/less/portfolio.index b/less/portfolio.index new file mode 100644 index 000000000..e69de29bb diff --git a/less/resume.html b/less/resume.html new file mode 100644 index 000000000..e69de29bb diff --git a/less/resume.index b/less/resume.index new file mode 100644 index 000000000..e69de29bb diff --git a/portfolio.index b/portfolio.index new file mode 100644 index 000000000..e69de29bb diff --git a/resume.index b/resume.index new file mode 100644 index 000000000..e69de29bb