Skip to content
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
276 changes: 275 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,275 @@
/* 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%;
background-color: grey;
}
.mixins_margins_0_paddings_2 {
margin-top: 0;
margin-bottom: 0;
padding: 2%;
}
.mixins_h1_font_color_margin {
font-size: 24px;
color: red;
margin-bottom: 2%;
}
.main_container {
width: 96%;
height: 100%;
margin: 2%;
padding: 0%;
}
.main_container .top_container {
background-color: #cccccc;
width: 100%;
padding-left: 3%;
padding-bottom: 3%;
}
.main_container .top_container .picture_and_navi {
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
padding: 1%;
margin: auto;
}
.main_container .top_container .picture_and_navi .picture {
width: 40%;
height: 15%;
}
.main_container .top_container .picture_and_navi .picture img {
width: 100%;
height: 100%;
}
.main_container .top_container .picture_and_navi .navi {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
width: 60%;
box-sizing: border-box;
margin: 5%;
}
.main_container .top_container .picture_and_navi .navi a {
width: 120px;
height: 30px;
text-decoration: none;
border-style: solid;
border-color: red;
background-color: grey;
border-width: 1px;
border-radius: 5px;
text-align: center;
font-size: 18px;
padding: 5px;
margin: 3%;
color: white;
}
.main_container .top_container .picture_and_navi .navi a:hover {
background-color: black;
}
.main_container .top_container h1 {
font-size: 50px;
color: red;
margin-top: 0;
margin-bottom: 0;
padding: 2%;
}
.main_container .top_container h3 {
font-size: 24px;
color: red;
margin-top: 0;
margin-bottom: 0;
padding: 2%;
}
.main_container .top_container p {
margin-top: 0;
margin-bottom: 0;
padding: 2%;
}
.main_container .top_container .Lets_Team_Up {
margin-left: 2%;
padding: 1%;
font-size: 18px;
background-color: grey;
text-decoration: none;
box-sizing: border-box;
color: white;
border-color: red;
border-style: solid;
border-width: 1px;
border-radius: 5px;
}
.main_container .top_container a:hover {
background-color: black;
}
.main_container .mid_container {
display: flex;
justify-content: start;
margin-top: 2%;
margin-bottom: 2%;
padding: 0%;
}
.main_container .mid_container .mid_left_container {
width: 45%;
}
.main_container .mid_container .mid_left_container h1 {
font-size: 24px;
color: red;
margin-bottom: 2%;
}
.main_container .mid_container .mid_right_container {
width: 45%;
margin-left: 10%;
}
.main_container .mid_container .mid_right_container h1 {
font-size: 24px;
color: red;
margin-bottom: 2%;
}
.main_container .bottom_container h1 {
font-size: 24px;
color: red;
margin-bottom: 2%;
}
.main_container .bottom_container .table .head {
font-weight: bold;
}
.main_container .bottom_container .table .head th {
width: 200px;
text-align: left;
}
.main_container .bottom_container .table .row {
color: black;
}
Binary file added img/JDD.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 65 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,73 @@
<html lang="en">
<head>
<meta charset="utf-8">

<title>My Resume</title>

<link rel="stylesheet" href="css/index.css">

<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/index.css" media="screen"/>
</head>

<body>
<h1>My Resume</h1>
<section>
<div class="main_container">
<div class="top_container">
<div class="picture_and_navi">
<div class="picture">
<!-- <img src="https://picsum.photos/seed/picsum/200/300"> -->
<img src="img/jdd.jpg">
</div>
<div class="navi">
<a href="#">Intro</a>
<a href="#">Skills</a>
<a href="#">Work History</a>
<a href="#">Contact</a>
<a href="../Sprint-Challenge--User-Interface/index.html">Project 1</a>
<a href="../User-Interface-II/index.html">Project 2</a>
</div>
</div>
<h1>Jose Dolar - Software Developer</h1>
<h3> Technology is my jam!</h3>
<p>Occationally I have time to work on side projects. If you're interested, let me know by signing up on the website</p>
<br><br>
<a class="Lets_Team_Up" href="#"> Lets Team Up</a>
<br><br>
</div>
<div class="mid_container">
<div class="mid_left_container">
<h1>Listen up</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div class="mid_right_container">
<h1>I cantact me at:</h1>
<p>email:josedolar@yahoo.com</p>
<br>
<p>Mobile:999-999-9999</p>
</div>
</div>
<div class="bottom_container">
<h1>Work History</h1>
<table class="table">
<tr class="head">
<th>Yrs</th>
<th>Company</th>
<th>Title</th>
<th>Tech Used</th>
</tr>
<tr class="row">
<td>3</td>
<td>Tesla</td>
<td>Production Associate</td>
<td></td>
</tr>
<tr class="row">
<td>9</td>
<td>Lakeshore</td>
<td>Desktop Software Developer</td>
<td>POS, OPOS, xBase, SQL, Html</td>
</tr>
</table>
</div>

</div>
</section>
</body>
</html>
Loading