Skip to content

Commit

Permalink
added styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jazicorn committed May 16, 2024
1 parent ebdd205 commit 19c824f
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 5 deletions.
89 changes: 89 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,92 @@
body {
font-family: Arial;
font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
margin-top: 10px;
margin-bottom: 10px;
}

h1, h2 {
color: #075985;
}

h3, h4, h5, h6 {
color: #4b5563;
}

p, ul {
margin-top: 5px;
margin-bottom: 5px;
}

header {
width: 100%;
text-align: center;
display: flex;
flex-direction: column;
place-content: center;
}

h1 {
font-size: 64px;
}

a {
text-decoration-line: none;
color:#4b5563;
}

a:hover {
color: #075985;
}

.work-experience-info {
margin-left: 0px;
padding-left: 0px;
list-style-type: none;
display: flex;
flex-direction: row;
}

.work-experience-info li {
padding-left: 0px;
padding-right: 8px;
}

.work-experience-info li span:nth-child(1) {
color:#075985;
font-style: bold;
font-weight: 600;
font-size: 17px;
}

.work-experience-info li span:nth-child(2) {
color: #4b5563;
font-style: italic;
font-size: 16px;
}

.projects-tech-used li span:nth-child(1) {
color:#075985;
font-style: bold;
font-weight: 600;
font-size: 16px;
}

th {
text-align: left;
}

td {
vertical-align: top;
}

th:nth-child(1) {
width: 160px;
}

table h4 {
margin-top: 0px !important;
}
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h4>Curriculum:</h4>
<h2>Work Experience</h2>
<div>
<h3>Position: Technical Support Specialist III</h3>
<ul>
<ul class="work-experience-info">
<li><span>Company:</span>&nbsp;<span>DealerSpike</span></li>
<li><span>Location:</span>&nbsp;<span>Remote</span></li>
<li><span>Employment:</span>&nbsp;<span>Dec 2023 - Mar 2023</span></li>
Expand All @@ -125,7 +125,7 @@ <h3>Position: Technical Support Specialist III</h3>
</div>
<div>
<h3>Position: Business Selling Manager</h3>
<ul>
<ul class="work-experience-info">
<li><span>Company:</span>&nbsp;<span>Dillards </span></li>
<li><span>Location:</span>&nbsp;<span>In-Person</span></li>
<li><span>Employment:</span>&nbsp;<span>Oct 2011 - Aug 2014</span></li>
Expand Down Expand Up @@ -165,9 +165,9 @@ <h3>ReCodeCamp</h3>
<li>Github (API-Server-Email): <a href="https://github.com/jazicorn/recodecamp-api-email" target="_blank">https://github.com/jazicorn/recodecamp-api-email</a></li>
</ul>
<h4>Technology Used:</h4>
<ul>
<li><span>Languages:</span><span>HTML, CSS, Javascript, Typescript, SQL, PostgreSQL</span></li>
<li><span>Frameworks/Libraries:</span><span>React.js, Redux, Vitest, Node.js, Express.js, Mocha.js, Chai.js, Redis, Swagger</span></li>
<ul class="projects-tech-used">
<li ><span>Languages:</span>&nbsp;<span>HTML, CSS, Javascript, Typescript, SQL, PostgreSQL</span></li>
<li><span>Frameworks/Libraries:</span>&nbsp;<span>React.js, Redux, Vitest, Node.js, Express.js, Mocha.js, Chai.js, Redis, Swagger</span></li>
</ul>
<h4>Utilized:</h4>
<ul>
Expand Down

0 comments on commit 19c824f

Please sign in to comment.