-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5aae294
commit 992b24c
Showing
8 changed files
with
217 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
<!-- <p>experience works!</p> --> | ||
<section class="section jobs" id='jobs'> | ||
<div class="container"> | ||
<div class="section-box"> | ||
<div class="about-title mb-5" data-aos="fade-up" data-aos-duration="1000"> | ||
<h3 class="e-font section-title"> | ||
<span class='code-font n-section-title'>02.</span> Where I've Worked | ||
</h3> | ||
</div> | ||
<div class="jobs-tabs" data-aos="fade-up" data-aos-duration="1000"> | ||
<ul ngbNav #nav="ngbNav" [(activeId)]="active" orientation="vertical" class="nav-tabs jobs-tabs"> | ||
<li *ngFor='let job of jobs; let i = index' [title]="job.tab" [ngbNavItem]="i"> | ||
<a ngbNavLink class="exp-buttons">{{job.tab}}</a> | ||
<ng-template ngbNavContent> | ||
<h4 class='title-tab-content'>{{job.title}} @ <a class="company-tab-content" [href]="job.url" target="_blank">{{job.tab}}</a></h4> | ||
<h5 class="job-time">{{job.date}}</h5> | ||
<p *ngFor='let jobDescriptionParagraph of job.description; let i = index' class="job-description" | ||
[innerHTML]="jobDescriptionParagraph"></p> | ||
<span></span> | ||
</ng-template> | ||
</li> | ||
</ul> | ||
<div [ngbNavOutlet]="nav" class="mt-2"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
@import "./../../../variables.scss"; | ||
|
||
|
||
::ng-deep .jobs .jobs-tabs { | ||
display: flex; | ||
|
||
.tab-content { | ||
margin-left: 38px; | ||
} | ||
|
||
ul { | ||
display: block; | ||
width: 114.33px; | ||
border: none; | ||
} | ||
|
||
a.active { | ||
background-color: $LightNavy !important; | ||
color: $Green !important; | ||
border-color: transparent !important; | ||
border-radius: 0px; | ||
} | ||
|
||
a:hover { | ||
background-color: $LightNavy !important; | ||
color: $Green !important; | ||
border-color: transparent !important; | ||
border-radius: 0px; | ||
} | ||
|
||
a.exp-buttons { | ||
display: inline-block; | ||
-webkit-text-decoration: none; | ||
text-decoration: none; | ||
-webkit-text-decoration-skip-ink: auto; | ||
text-decoration-skip-ink: auto; | ||
color: inherit; | ||
position: relative; | ||
display: -webkit-box; | ||
display: -webkit-flex; | ||
display: -ms-flexbox; | ||
-webkit-align-items: center; | ||
-webkit-box-align: center; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
width: 114.33px; | ||
background-color: transparent; | ||
height: 42px; | ||
-webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1); | ||
transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1); | ||
text-align: left; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
font-family: $CodeFont; | ||
font-size: 13px; | ||
color: $Slate; | ||
} | ||
|
||
li { | ||
border-left: 2px solid $LightestNavy; | ||
border-left-width: 2px; | ||
border-left-style: solid; | ||
border-left-color: rgb(48, 60, 85); | ||
height: 42px; | ||
|
||
// &:active { | ||
// border-left: 2px solid $Green; | ||
// } | ||
} | ||
} | ||
|
||
.jobs { | ||
|
||
max-width: 700px; | ||
margin: auto; | ||
|
||
.title-tab-content { | ||
color: $LightestSlate; | ||
font-size: 22px; | ||
font-weight: 500; | ||
margin-bottom: 5px; | ||
|
||
.company-tab-content { | ||
color: $Green; | ||
} | ||
} | ||
|
||
.job-time { | ||
font-family: $CodeFont; | ||
font-size: 13px; | ||
font-weight: normal; | ||
-webkit-letter-spacing: 0.05em; | ||
-moz-letter-spacing: 0.05em; | ||
-ms-letter-spacing: 0.05em; | ||
letter-spacing: 0.05em; | ||
color: $LightSlate; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.job-description { | ||
position: relative; | ||
padding-left: 30px; | ||
margin-bottom: 10px; | ||
font-size: 18px; | ||
|
||
&:before { | ||
content: '▹'; | ||
position: absolute; | ||
left: 0; | ||
color: $Green; | ||
} | ||
} | ||
} | ||
|
||
|
||
|
||
@media (max-width: 768px) { | ||
.jobs { | ||
.job-description { | ||
padding: 0px; | ||
} | ||
} | ||
|
||
::ng-deep .jobs-tabs { | ||
display: block !important; | ||
|
||
.tab-content { | ||
margin-left: 0px !important; | ||
} | ||
|
||
ul { | ||
display: block; | ||
width: 100% !important; | ||
margin-bottom: 50px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters