Skip to content

Commit

Permalink
update 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
opyate committed Aug 13, 2024
1 parent ddef277 commit eb3306d
Show file tree
Hide file tree
Showing 20 changed files with 11,051 additions and 9,213 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v11.15.0
v22.4.1
4 changes: 2 additions & 2 deletions css/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ img.profile {
box-shadow: $card;
border-radius: 50%;
float: left;
margin: $spacing / 3;
margin-right: $spacing / 2;
margin: calc($spacing / 3);
margin-right: calc($spacing / 2);
}

h4.role {
Expand Down
6 changes: 3 additions & 3 deletions css/_layout.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.section {
padding-top: $spacing / 3;
padding-bottom: $spacing / 3;
padding-top: calc($spacing / 3);
padding-bottom: calc($spacing / 3);
padding-left: $spacing;
padding-right: $spacing;
}
Expand All @@ -25,4 +25,4 @@ h4 > small:nth-child(2) {

.role {
padding-top: 10px;
}
}
87 changes: 81 additions & 6 deletions css/_page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,89 @@ p + p {
/* Restore the spacing between the paragraphs */
margin-top: 0.5cm;
}
/* For links in the document */
a {
/* Prevent colorization or decoration */
text-decoration: none;
color: $textcolour;
}

/* For tables in the document */
table {
/* Avoid page breaks inside */
page-break-inside: avoid;
}


/* emoji icons */
p.role {
font-weight: 600;
}
p.role::before {
content: "👷‍♂️ ";
}

p.timeline::before {
content: "🗓️ ";

}

p.tagline::before {
content: "📌 ";
}

p.tech::before {
content: "🔧 ";
}

/* inline list */
$inline_list_spacing: 10px;

ul.inline-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
margin-top: -10px;
}

ul.inline-list li {
margin-left: $inline_list_spacing;
}

ul.inline-list li:first-child {
margin-left: 0;
}

ul.inline-list li::before {
content: "|";
margin-right: $inline_list_spacing;
}

ul.inline-list li.ng-hide::before {
content: "";
}

ul.inline-list li:first-child::before {
content: "";
margin-right: 0;
}

/* Additional rule to handle visible elements */
ul.inline-list li:not(.ng-hide):first-of-type::before {
content: "";
margin-right: 0;
}

/* un-link the header hrefs */
h2 > a {
text-decoration: none;
color: $textcolour;
}

h2.company {
background-color: lighten($accent, 25%);
}

.header.section {
background-color: lighten($brand, 25%);
}

.education.section {
background-color: lighten($brand, 25%);
}
25 changes: 24 additions & 1 deletion css/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
ul.duties {
// list-style: disc !important;
// list-style-type: disc !important;
margin-top: -20px;
// margin-top: -20px;
// display: list-item !important;
}

Expand All @@ -85,6 +85,29 @@
box-shadow: inset 0 0 0 1000px $brand !important;
color: white !important;
}

/* For links in the document */
a {
/* Prevent colorization or decoration */
text-decoration: none;
color: $textcolour;
}

.end {
display: none;
}

h2.company {
background-color: inherit;
}

.header.section {
background-color: inherit;
}

.education.section {
background-color: inherit;
}
}
@media print and (color) {
* {
Expand Down
4 changes: 2 additions & 2 deletions css/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$textcolour: #333;
$textcolourl: lighten($textcolour, 25%);
$textcolourll: lighten($textcolourl, 25%);
$textcolourl: lighten($textcolour, 5%);
$textcolourll: lighten($textcolourl, 10%);
//$brand: #0076c9;
$brand: #75aafd;
//$accent: #C97700;
Expand Down
Empty file removed docs/_config.yml
Empty file.
1 change: 0 additions & 1 deletion docs/cv.186f8cad.map

This file was deleted.

1 change: 0 additions & 1 deletion docs/cv.1a0fc8f5.css

This file was deleted.

2 changes: 2 additions & 0 deletions docs/cv.7facd155.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit eb3306d

Please sign in to comment.