Locally provide fonts and try add more breathing room to resume

This commit is contained in:
Danila Fedorin 2023-02-19 22:08:31 -08:00
parent 984256a0fa
commit 17ab717ae1
4 changed files with 22 additions and 13 deletions

Binary file not shown.

Binary file not shown.

View File

@ -73,7 +73,8 @@
<h2>maypop</h2> <h2>maypop</h2>
<i data-feather="link" class="project-link-icon"></i> <i data-feather="link" class="project-link-icon"></i>
</a> &mdash; </a> &mdash;
Instructional implementation of a dependently typed functional programming language capable of formal proofs. <!-- Instructional implementation of a dependently typed functional programming language capable of formal proofs. -->
Dependently typed functional programming language capable of formal proofs.
</div> </div>
<!-- <!--
<div class="project-container"> <div class="project-container">
@ -187,6 +188,7 @@
</ul> </ul>
</div> </div>
<!--
<div class="position"> <div class="position">
<h2>Lead Programmer</h2> <h2>Lead Programmer</h2>
<div class="position-location">Northwest Advanced Programming Workshop, Portland, OR | Summer 2017</div> <div class="position-location">Northwest Advanced Programming Workshop, Portland, OR | Summer 2017</div>
@ -195,9 +197,10 @@
<li>Designed and implemented a <em class="bold">desktop calculator</em> application with a focus on usability and feature-completeness.</li> <li>Designed and implemented a <em class="bold">desktop calculator</em> application with a focus on usability and feature-completeness.</li>
<li>Worked on a variety of components, including parsing input through a custom regular expression engine, evaluating expressions through Taylor Series, and UI design.</li> <li>Worked on a variety of components, including parsing input through a custom regular expression engine, evaluating expressions through Taylor Series, and UI design.</li>
<li>Profiled and debugged application using <em class="bold">VisualVM</em> in order to find inefficiencies, reducing computation time by 60%.</li> <li>Profiled and debugged application using <em class="bold">VisualVM</em> in order to find inefficiencies, reducing computation time by 60%.</li>
<!-- <li>Exercised public speaking and communication skills by reporting progress to supervisor and presenting to other teams.</li> --> <li>Exercised public speaking and communication skills by reporting progress to supervisor and presenting to other teams.</li>
</ul> </ul>
</div> </div>
-->
<!-- <!--
<div class="position"> <div class="position">

View File

@ -1,5 +1,3 @@
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:wght@400;600;700&display=swap');
$text-font: 'Raleway'; $text-font: 'Raleway';
$big-font: 'Raleway'; $big-font: 'Raleway';
$color-main: #36e281; $color-main: #36e281;
@ -7,6 +5,12 @@ $color-secondary: $color-main;
$color-link: black; $color-link: black;
$color-text: black; $color-text: black;
@font-face {
font-family: "Raleway";
src: url("../font/Raleway-VariableFont_wght.ttf") format("truetype"),
url("../font/Raleway-Italic-VariableFont.ttf") format("truetype");
}
@media print { @media print {
@page { @page {
margin: 0 0 0 0; margin: 0 0 0 0;
@ -37,7 +41,8 @@ body {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
font-family: $text-font; font-family: $text-font;
line-height: 1.225em; line-height: 1.3em;
font-size: 1.05em;
font-variant-ligatures: none; font-variant-ligatures: none;
@media not print { @media not print {
@ -70,25 +75,26 @@ hr {
} }
div.name { div.name {
font-size: 1.7rem; font-size: 1.7em;
margin: 10px; margin: 10px;
font-family: $big-font, serif; font-family: $big-font, serif;
} }
h1 { h1 {
font-size: 1.25rem; font-size: 1.25em;
font-family: $big-font, serif; font-family: $big-font, serif;
font-weight: 600; font-weight: 600;
margin: 10px; margin: 10px;
margin-top: 12px;
margin-bottom: 2.5px; margin-bottom: 2.5px;
display: inline-block; display: inline-block;
} }
h2 { h2 {
font-size: 1.2rem; font-size: 1.2em;
font-weight: 400; font-weight: 400;
margin-bottom: 0px; margin-bottom: 0px;
margin-top: 0.2rem; margin-top: 0.2em;
} }
ul { ul {
@ -141,14 +147,14 @@ a.project-link {
align-items: center; align-items: center;
h2 { h2 {
font-size: 1rem; font-size: 1em;
} }
} }
svg.project-link-icon { svg.project-link-icon {
height: 0.9rem; height: 0.9em;
width: 0.9rem; width: 0.9em;
margin-left: 0.25rem; margin-left: 0.25em;
} }
main { main {