Skip to content

Nelly montanez #1301

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 13 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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ 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.
- [ ] 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.
- [ 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.
- [ ] Push commits: git push origin `<firstName-lastName>`.

Follow these steps for completing your project.
Expand All @@ -18,7 +18,7 @@ Follow these steps for completing your project.
- [ ] 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.
* [ 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.
* [ ] 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
Expand Down
277 changes: 276 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,276 @@
/* 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;
padding: 0;
margin: 0;
max-width: 100%;
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUE.ttf) format('truetype');
}
html,
body {
height: 100%;
}
body {
background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
}
h1,
h2,
h3,
a {
color: #696969;
font-family: 'Oswald', sans-serif;
}
section {
padding: 3%;
}
header {
width: 100%;
border: 2px solid black;
padding-top: 6%;
}
@media (max-width: 500px) {
header {
width: 100%;
height: 22vh;
display: flex;
flex-direction: column;
}
header nav {
display: flex;
flex-direction: column;
padding: 2%;
}
header a {
display: flex;
justify-content: space-between;
}
}
header nav {
width: 100%;
display: flex;
justify-content: space-around;
align-items: baseline;
}
header nav a {
text-decoration: none;
letter-spacing: 1px;
font-size: 1.3rem;
display: flex;
justify-content: space-between;
}
header nav a:hover {
color: pink;
}
header nav h1 {
width: 70%;
font-size: 2.5rem;
padding-bottom: 2%;
}
.profile {
width: 90%;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
display: flex;
flex-direction: row;
align-items: center;
}
@media (max-width: 500px) {
flex-direction: column;
}
@media (max-width: 500px) {
section {
flex-direction: column;
}
}
h2 {
width: 25%;
padding: 1% 0;
font-size: 1.2rem;
}
p {
width: 40%;
font-size: 1.2rem;
font-family: 'Oswald', sans-serif;
color: #2F4F4F;
}
img {
width: 20%;
border: 1px solid black;
border-radius: 85%;
}
.skills {
width: 100%;
height: 62.5vh;
color: #2F4F4F;
font-family: 'Oswald', sans-serif;
padding-top: 3%;
display: flex;
justify-content: space-around;
border-top: 4px dotted black;
border-bottom: 4px dotted black;
}
.skills .list1 {
width: 50%;
padding: 3%;
list-style-type: none;
font-size: 1.2rem;
font-family: 'Oswald', sans-serif;
color: #2F4F4F;
}
.skills .list2 {
width: 50%;
padding: 3%;
font-size: 1.2rem;
}
.skills h2 {
font-size: 1.75rem;
}
table {
padding: 10%;
line-height: 2;
color: #2F4F4F;
font-family: 'Oswald', sans-serif;
}
.footer h3 {
font-size: 1.2rem;
color: white;
text-align: center;
margin: 0 40%;
padding: 1%;
background-color: #4682B4;
}
71 changes: 70 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<head>
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>My Resume</title>

<link rel="stylesheet" href="css/index.css">
Expand All @@ -14,6 +16,73 @@
</head>

<body>
<h1>My Resume</h1>
<header>
<nav>
<h1> Nelly Montanez</h1>
<a href="#">Home</a>
<a href="#">Bio</a>
<a href="#">Portfolio</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="profile">
<div class="bio">
<h2>Profile</h2>
<p>Currently a student at Lambda School in the Full Stack Web Development. This is a valuable first experience in Computer Programming. Fluent in English and Spanish, verbal and written communication. </p>
</div>
<img src="https://pbs.twimg.com/profile_images/933079741904629760/TjmkH5qr_400x400.jpg">
</section>
<section class="skills">
<div class="list1">
<h2>Skills</h2>
<div class="list1">Programming</div>
<div class="list1">Debugging</div>
<div class="list1">Collaboration</div>
<div class="list1">Critical Thinking</div>
<div class="list1">Oral written communication</div>
</div>
<div class="list2">
<h2>Languages</h2>
<div class="list2">JavaScript</div>
<div class="list2">Java</div>
<div class="list2">Python</div>
<div class="list2">DJango</div>
<div class="list2">SQL</div>
</div>
</div>
</section>
<section>
<h2> Work Experience</h2>
<table style="width:100%">
<tr>
<th>Years</th>
<th>Company</th>
<th>Title</th>
<th>Tech Used</th>
</tr>
<tr>
<th>1</th>
<th>Apple</th>
<th>Software Engineer</th>
<th>Swift</th>
</tr>
<tr>
<th>2</th>
<th>Microsoft</th>
<th>Computer Scientist</th>
<th>.Net</th>
</tr>
<tr>
<th>3</th>
<th>Amazon</th>
<th>Devs Op</th>
<th>AWS</th>
</tr>
</table>

</section>
<footer class="footer">
<h3>Copyright Nelly Montanez 2020</h3>
</footer>
</body>
</html>
Loading