Skip to content

Michael guadalupe #1292

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 26 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,44 @@
# Preprocessing I: Digital Resume
try 1


For this project you will be building a digital resume from scratch. You will be required to use specific preprocessing skills to accomplish your tasks.

## Task 1: Set Up The Project With Git

- [ ] 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!).
- [ ] Create a new branch: git checkout -b `<firstName-lastName>`.
- [ ] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
- [ ] Push commits: git push origin `<firstName-lastName>`.
- [x ] Create a forked copy of this project.
- [x] Add your project manager as collaborator on Github.
- [x] Clone your OWN version of the repository (Not Lambda's by mistake!).
- [x] Create a new branch: git checkout -b `<firstName-lastName>`.
- [x] Implement the project on your newly created `<firstName-lastName>` branch, committing changes regularly.
- [x] Push commits: git push origin `<firstName-lastName>`.

Follow these steps for completing your project.

- [ ] Submit a Pull-Request to merge <firstName-lastName> Branch into master (student's Repo). **Please don't merge your own pull request**
- [ ] Add your project manager as a reviewer on the pull-request
- [ ] Your project manager will count the project as complete by merging the branch back into master.
- [x] Submit a Pull-Request to merge <firstName-lastName> Branch into master (student's Repo). **Please don't merge your own pull request**
- [x] Add your project manager as a reviewer on the pull-request
- [x] Your project manager will count the project as complete by merging the branch back into master.

## Task 2: Set up your preprocessor
* [ ] Verify that you have LESS installed correctly by running `lessc -v` in your terminal, if you don't get a version message back, reach out to your cohort's help channel or your team lead for help.
* [ ] In your project's root folder, run the following command `less-watch-compiler less css index.less`
* [ ] Verify your compiler is working correctly by changing the `background-color` on the `html` selector to `red`
* [ ] Once you see the red screen, you can delete that style and you're ready to start on the next task
* [x] Verify that you have LESS installed correctly by running `lessc -v` in your terminal, if you don't get a version message back, reach out to your cohort's help channel or your team lead for help.
* [x] In your project's root folder, run the following command `less-watch-compiler less css index.less`
* [x] Verify your compiler is working correctly by changing the `background-color` on the `html` selector to `red`
* [x] Once you see the red screen, you can delete that style and you're ready to start on the next task

## Task 3: Project Objectives

* [ ] Review the [example resume](resume-example.png). Notice how simplistic the example resume is. Develop a simple layout of your choosing. If you are struggling to be creative, you may use the example resume as your design file.
* [x] Review the [example resume](resume-example.png). Notice how simplistic the example resume is. Develop a simple layout of your choosing. If you are struggling to be creative, you may use the example resume as your design file.
**Note: you are only required to build one page, anything more than that would be stretch.**
* [ ] The resume content will be provided by you. The content can be about you or a fictional character.
* [ ] Content: Navigation - Build a simple navigation with 4 items of your choosing
* [ ] Content: Intro - Have a short introduction as to why you would be a good hire
* [ ] Content: Skills - Showcase a list of skills you have somewhere on your resume
* [ ] Content: Work History - Showcase your work history somewhere on your resume
* [ ] Content: Contact - Provide some way a potential employer could contact you. Phone number, email, or a full on contact form (doesn't have to work)
* [ ] Variables: Incorporate variables in your project for color and font stacks.
* [ ] Nesting: Every selector should be nested inside the main container. Avoid having global styles unless they are element level.
* [ ] Mixins: Create 2 mixins of your choosing. Hint: It's super helpful to use flexbox properties in mixins
* [ ] Mobile: Use nested-at rules to provide a mobile version of your resume. Use `500px` as a `max-width` for mobile.
* [x ] The resume content will be provided by you. The content can be about you or a fictional character.
* [x] Content: Navigation - Build a simple navigation with 4 items of your choosing
* [x] Content: Intro - Have a short introduction as to why you would be a good hire
* [x] Content: Skills - Showcase a list of skills you have somewhere on your resume
* [x] Content: Work History - Showcase your work history somewhere on your resume
* [x] Content: Contact - Provide some way a potential employer could contact you. Phone number, email, or a full on contact form (doesn't have to work)
* [x] Variables: Incorporate variables in your project for color and font stacks.
* [x] Nesting: Every selector should be nested inside the main container. Avoid having global styles unless they are element level.
* [x] Mixins: Create 2 mixins of your choosing. Hint: It's super helpful to use flexbox properties in mixins
* [x] Mobile: Use nested-at rules to provide a mobile version of your resume. Use `500px` as a `max-width` for mobile.

## Stretch Goals:
* [ ] Incorporate a google font of your choosing
Expand Down
262 changes: 261 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,261 @@
/* Compile your LESS 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;
}
/* Set every element's box-sizing to border-box */
* {
box-sizing: border-box;
}
html,
body {
height: 100%;
}
html {
font-size: 62.5%;
}
p {
font-size: 1.6rem;
}
.specialfont {
font-family: 'Roboto', sans-serif;
}
.page-container {
margin: 0 auto;
max-width: 1200px;
width: 100%;
}
.page-container .sitecheck {
border: 1px solid red;
}
.page-container .onepxborder {
border: 1px solid grey;
}
.page-container .header {
display: flex;
justify-content: flex-end;
}
.page-container .header nav {
width: 30%;
display: flex;
margin: 25px 0px;
justify-content: space-between;
}
.page-container .header nav a {
margin-left: 2.58rem;
font-size: 1.6rem;
}
@media screen and (max-width: 500px) {
.page-container .header nav {
width: 90%;
display: flex;
flex-direction: column;
padding: 2%;
}
}
.page-container .top-section {
background: lightgrey;
border: 2px solid black;
display: flex;
flex-wrap: wrap;
}
.page-container .top-section .image {
width: 25%;
margin-top: 5%;
margin-left: 4%;
margin-bottom: 5%;
}
.page-container .top-section .image img {
max-width: 100%;
}
.page-container .top-section p {
padding: 2%;
}
.page-container .top-section h1 {
font-size: 3.8rem;
font-family: 'Roboto', sans-serif;
}
.page-container .top-section h3 {
font-size: 2.8rem;
}
.page-container .top-section .top-section-text {
margin: 10px;
padding: 1%;
border-bottom: 1px solid black;
width: 92%;
}
.page-container .top-section .genericbutton {
width: 14%;
padding: 0.5%;
margin: 1%;
background: #5b5b3e;
color: white;
}
.page-container .middle-section {
width: 100%;
margin-top: 2%;
padding: 1%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.page-container .middle-section .middle-container {
width: 45%;
}
.page-container .middle-section .middle-container h2 {
font-size: 2.8rem;
}
.page-container .middle-section ul li {
border: 1px solid lightgrey;
font-size: 1.6rem;
padding: 1%;
}
.page-container .middle-section .bottom-table {
width: 100%;
}
.page-container .middle-section .bottom-table h2 {
font-size: 2.8rem;
}
.page-container .middle-section .work-history {
width: 100%;
font-size: 1.6rem;
border: 1px solid grey;
text-align: left;
padding: 1rem;
}
.page-container .middle-section .work-history .grey {
background-color: #dddddd;
}
.page-container footer {
margin-top: 2%;
padding: 5% 30%;
background: lightgrey;
color: white;
}
.page-container footer .footer-rules {
width: 100%;
font-size: 2.8rem;
}
Binary file added images/Profile pic.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading