diff --git a/css/index.css b/css/index.css
index 7dd97920d..1e3d5a81e 100644
--- a/css/index.css
+++ b/css/index.css
@@ -1 +1,357 @@
-/* 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;
+}
+/* Set every element's box-sizing to border-box */
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ max-width: 100%;
+}
+html {
+ font-size: 62.5%;
+}
+html body {
+ font-size: 2.5em;
+ line-height: 50px;
+ height: auto;
+}
+html body .container {
+ width: 800x;
+ height: auto;
+ display: flex;
+ margin: 0;
+ font-family: 'Slabo 27px', serif;
+}
+html body .container h3 {
+ margin: 20px 15px 30px 15px;
+ padding: -1px 0;
+ padding-left: 10px;
+ border-top: 3px solid black;
+ border-bottom: 3px solid black;
+ font-weight: bold;
+ font-size: 2.1rem;
+}
+@media (max-width: 500px) {
+ html body .container h3 {
+ font-size: 1.9rem;
+ }
+}
+html body .container h4 {
+ font-weight: bold;
+ font-size: 2.1rem;
+}
+html body .container .sidebar {
+ height: auto;
+ padding: 0 25px;
+ width: 100%;
+ background: #002633;
+ color: white;
+}
+@media (max-width: 500px) {
+ html body .container .sidebar {
+ display: none;
+ }
+}
+html body .container .sidebar .pic-profile {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+ height: 280px;
+ margin-bottom: 10%;
+ margin-top: 25%;
+}
+html body .container .sidebar .pic-profile img {
+ width: 80%;
+ height: 80%;
+ border: 3px solid white;
+ border-radius: 50%;
+}
+html body .container .sidebar .contact-info,
+html body .container .sidebar .skills,
+html body .container .sidebar .social {
+ padding: 25px 0;
+ padding-bottom: 13%;
+}
+html body .container .sidebar ul li {
+ display: flex;
+ margin-bottom: 10px;
+ margin-left: 20px;
+}
+html body .container .sidebar ul li .icon {
+ width: 35px;
+ height: 35px;
+ margin: 1%;
+ color: white;
+}
+html body .container .sidebar ul li a {
+ text-decoration: none;
+ color: white;
+}
+html body .container .sidebar ul li p {
+ padding: 7px;
+}
+html body .container header nav ul {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin: 30px;
+}
+html body .container header nav ul a {
+ text-decoration: none;
+ font-size: 2.3rem;
+ padding-top: 20px;
+ padding: 70px;
+ color: black;
+ font-weight: bold;
+}
+@media (max-width: 500px) {
+ html body .container header nav ul a {
+ margin: 11px;
+ padding-right: 5px;
+ padding-left: 3px;
+ font-size: 2.3rem;
+ }
+}
+html body .container header nav ul a:hover {
+ border-bottom: 2px solid black;
+ padding: 2px;
+}
+html body .container header .top-resume {
+ padding: 40px;
+ margin: 5%;
+ text-align: center;
+ line-height: 30px;
+ background-color: silver;
+ margin-top: 19px;
+}
+@media (max-width: 500px) {
+ html body .container header .top-resume {
+ margin-right: 8%;
+ background: #002633;
+ color: white;
+ }
+}
+html body .container header .top-resume h1 {
+ font-size: 3.9rem;
+ font-weight: bold;
+}
+@media (max-width: 500px) {
+ html body .container header .top-resume h1 {
+ font-size: 2.9rem;
+ }
+}
+html body .container header .top-resume h2 {
+ font-size: 2.4rem;
+ font-weight: bold;
+}
+@media (max-width: 500px) {
+ html body .container header .top-resume h2 {
+ font-size: 2.3rem;
+ }
+}
+html body .container .about {
+ padding-left: 35px;
+ padding-bottom: 1%;
+ font-size: 2.2rem;
+ line-height: 35px;
+ padding-right: 20px;
+}
+@media (max-width: 500px) {
+ html body .container .about p {
+ margin: 5%;
+ margin-left: -4%;
+ font-size: 1.9rem;
+ line-height: 35px;
+ }
+}
+html body .container .education {
+ padding-left: 35px;
+ padding-bottom: 1%;
+ font-size: 2.2rem;
+ line-height: 35px;
+ padding-right: 20px;
+}
+@media (max-width: 500px) {
+ html body .container .education p {
+ margin: 3px;
+ margin-left: 2%;
+ margin-right: 10%;
+ font-size: 1.9rem;
+ line-height: -9px;
+ padding-right: 15%;
+ }
+}
+html body .container .experience {
+ padding-left: 35px;
+ padding-bottom: 1%;
+ font-size: 2.2rem;
+ line-height: 35px;
+ padding-right: 20px;
+}
+@media (max-width: 500px) {
+ html body .container .experience p {
+ margin: 1%;
+ margin-left: 3%;
+ margin-right: 2%;
+ font-size: 1.9rem;
+ line-height: 30px;
+ padding-right: 15%;
+ }
+}
+html body .container p {
+ padding-left: 35px;
+ padding-bottom: 1%;
+ font-size: 2.2rem;
+ line-height: 35px;
+ padding-right: 20px;
+}
+html body footer .rights {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding-bottom: -1px;
+ padding: -1px;
+ margin-top: 80px;
+ font-size: 70%;
+}
+html body footer .social ul li {
+ display: none;
+}
+@media (max-width: 500px) {
+ html body footer .social ul li {
+ display: inline-block;
+ margin: -50px 1px 0 28px;
+ padding: 50px;
+ text-align: center;
+ }
+ html body footer .social ul li i {
+ color: black;
+ }
+}
diff --git a/images/IMG_9329.PNG b/images/IMG_9329.PNG
new file mode 100644
index 000000000..fd090c00f
Binary files /dev/null and b/images/IMG_9329.PNG differ
diff --git a/index.html b/index.html
index a7f9e3ad1..ba2400f52 100644
--- a/index.html
+++ b/index.html
@@ -1,19 +1,209 @@
-
+
-
+
My Resume
-
+
-
-
-
- My Resume
+
+
+
+
+
+
+
+
+
+
+ JORGE JIMENEZ
+ Software Engineer
+
+
+
+
ABOUT ME
+
+ I love computers, and programming, and I had been learning a lot about computer programs, and how to work with different programming languages. I love interacting with people, and I will love to have a career advacement that I can program, and I can do customer-facing work. I will like to find a job that can help me improve my development skills, and its beneficial because I am a quick learner.
+
+
+
WORK EXPERIENCE
+
+
+
+
JC Parking
+
- 2008 - 2016 -
+
Retrieve and park cars for well-established venue on Las Olas and the New River.
+
+
+
+
Microsoft
+
- 2014 - 2015 -
+
Handled inbound technical issues for customers including: login, passwords, hardware issues, and all networking issues. Assisted with OWA (Outlook Web Access), Link, and Office 365.
+
+
+
+
Fedex Same Day City
+
- 2016 - Present-
+
Courier provides courteous and efficient Same day delivery and pick- up of packages and FedEx Office customer orders
+
+
+
+
EDUCATION
+
+
+
+
Graphic Design
+
Broward College / 2010 - 2013
+
+
+
+
+
Information Technology
+
Keiser University / 2000 - 2010
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/less/index.less b/less/index.less
index 191ce142e..fd274af0e 100644
--- a/less/index.less
+++ b/less/index.less
@@ -4,56 +4,377 @@
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;
+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;
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+menu,
+nav,
+section {
+ display: block;
}
body {
- line-height: 1;
+ line-height: 1;
}
-ol, ul {
- list-style: none;
+ol,
+ul {
+ list-style: none;
}
-blockquote, q {
- quotes: none;
+blockquote,
+q {
+ quotes: none;
}
-blockquote:before, blockquote:after,
-q:before, q:after {
- content: '';
- content: none;
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: "";
+ content: none;
}
table {
- border-collapse: collapse;
- border-spacing: 0;
+ border-collapse: collapse;
+ border-spacing: 0;
}
/* Set every element's box-sizing to border-box */
+@color-white: white;
+@color-black: black;
+@font-size: 2.3rem;
+.flex() {
+ display: flex;
+}
+.center() {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.main-content() {
+ padding-left: 35px;
+ padding-bottom: 1%;
+ font-size: 2.2rem;
+ line-height: 35px;
+ padding-right: 20px;
+}
* {
- box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ max-width: 100%;
}
-html, body {
- height: 100%;
-}
+html {
+ font-size: 62.5%;
+ body {
+ font-size: 2.5em;
+ line-height: 50px;
+ height: auto;
+
+ .container {
+ width: 800x;
+ height: auto;
+ .flex();
+ margin: 0;
+ font-family: 'Slabo 27px', serif;
+
+
+ h3 {
+ margin: 20px 15px 30px 15px;
+ padding: -1px 0;
+ padding-left: 10px;
+ border-top: 3px solid @color-black;
+ border-bottom: 3px solid @color-black;
+
+ font-weight: bold;
+ font-size: 2.1rem;
+ @media (max-width: 500px) {
+ font-size: 1.9rem;
+ }
+ }
+
+ h4 {
+ font-weight: bold;
+ font-size: 2.1rem;
+ }
+
+ .sidebar {
+ height: auto;
+ padding: 0 25px;
+ width: 100%;
+ background: #002633;
+ color: @color-white;
+ @media (max-width: 500px) {
+ display: none;
+ }
+
+ .pic-profile {
+ .center();
+ width: 100%;
+ height: 280px;
+ margin-bottom: 10%;
+ margin-top: 25%;
+
+ img {
+ width: 80%;
+ height: 80%;
+ border: 3px solid @color-white;
+ border-radius: 50%;
+ }
+ }
+
+ .contact-info,
+ .skills,
+ .social {
+ padding: 25px 0;
+ padding-bottom: 13%;
+ }
+
+ ul li {
+ .flex();
+ margin-bottom: 10px;
+ margin-left: 20px;
+
+ .icon {
+ width: 35px;
+ height: 35px;
+ margin: 1%;
+ color: @color-white;
+ }
+ a {
+ text-decoration: none;
+ color: @color-white;
+ }
+ p {
+ padding: 7px;
+ }
+ }
+ }
+ header {
+ nav ul {
+ .center();
+ margin: 30px;
+ a {
+ text-decoration: none;
+ font-size: @font-size;
+ padding-top: 20px;
+ padding: 70px;
+ color: @color-black;
+ font-weight: bold;
+ @media (max-width: 500px) {
+ margin: 11px;
+ padding-right: 5px;
+ padding-left: 3px;
+ font-size: @font-size;
+ }
+ }
+ a:hover {
+ border-bottom: 2px solid @color-black;
+
+ padding: 2px;
+ }
+ }
+
+ .top-resume {
+ padding: 40px;
+ margin: 5%;
+ text-align: center;
+ line-height: 30px;
+ background-color: silver;
+
+ margin-top: 19px;
+
+ @media (max-width: 500px) {
+ margin-right: 8%;
+ background: #002633;
+ color: @color-white;
+ }
+
+ h1 {
+ font-size: 3.9rem;
+ font-weight: bold;
+ @media (max-width: 500px) {
+ font-size: 2.9rem;
+ }
+ }
+
+ h2 {
+ font-size: 2.4rem;
+ font-weight: bold;
+ @media (max-width: 500px) {
+ font-size: @font-size;
+ }
+ }
+ }
+ }
+
+ .about {
+ .main-content();
+ @media (max-width: 500px) {
+ p {
+ margin: 5%;
+ margin-left: -4%;
+ font-size: 1.9rem;
+ line-height: 35px;
+ }
+ }
+ }
+
+ .education {
+ .main-content();
+ @media (max-width: 500px) {
+ p {
+ margin: 3px;
+ margin-left: 2%;
+ margin-right: 10%;
+ font-size: 1.9rem;
+ line-height: -9px;
+ padding-right: 15%;
+ }
+ }
+ }
+
+ .experience {
+ .main-content();
+ @media (max-width: 500px) {
+ p {
+ margin: 1%;
+ margin-left: 3%;
+ margin-right: 2%;
+ font-size: 1.9rem;
+ line-height: 30px;
+ padding-right: 15%;
+ }
+ }
+ }
+
+ p {
+ .main-content();
+ }
+ }
+ footer {
+
+
+ .rights {
+ .center();
+ padding-bottom: -1px;
+ padding: -1px;
+ margin-top: 80px;
+ font-size: 70%;
+ }
+
+
+
+ .social {
+ ul li {
+ display: none;
+ @media (max-width: 500px) {
+
+ display: inline-block;
+ margin: -50px 1px 0 28px;
+ padding: 50px;
+ text-align: center;
+ i {
+ color: @color-black;
+ }
+ }
+
+ }
+
+ }
+
+ }
+ }
+ }