html {
overflow-y: overlay;
font-size: 16px;
}
#resume {
position: relative;
text-align: left;
color: var(--color);
line-height: 1.325rem;
margin-top: 1rem;;
padding-bottom: 4rem;
}
#resume a {
color: var(--link-color);
}
.resume_section {
width: 100%;
text-align: left;
font-size: 1rem;
}
.resume_section > h2 {
font-size: 1.25rem;
font-variant: small-caps;
font-weight: bold;
margin: 0 0 0.5rem 0;
padding: 0 0 0.35rem 0;
border-bottom: 2px solid var(--link-color);
color: var(--color);
}
.resume_section_content {
padding: 0.5rem 0;
}
.experience-header > div {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.experience-item ul {
margin-top: 0.5rem;
}
.experience-item li {
width: 100%;
}
.experience-tech {
font-size: 1rem;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
margin-top: 0.2rem;
}
.experience-tech > svg {
width: 1.125rem;
height: 1.125rem;
margin-right: 0.5rem;
}
.skills_table_container {
display: flex;
flex-direction: column;
}
.skills_table {
width: 100%;
border-spacing: 0;
border: 1px solid var(--theme-btn-border);
border-radius: 2px;
margin-bottom: 2rem;
}
.skills_table th {
text-align: center;
}
.skills_table th, .skills_table tr:not(:last-child) td {
border-bottom: 1px solid var(--action-button-border);
}
.skills_table tr th {
color: var(--link-color);
}
.skills_table td, th {
font-size: 0.9rem;
padding: 0.35rem 0.5rem;
width: 50%;
}
#skills_section {
display: flex;
flex-direction: column;
}
.skills_section_item {
display: flex;
flex-direction: column;
margin-bottom: 1.5rem;
}
.skills_section_bar {
position: relative;
width: 100%;
height: 1rem;
background-color: var(--theme-btn-bg);
border-radius: 3px;
border: 1px solid var(--action-button-border);
}
.skills_section_bar_fill {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-image: linear-gradient(to right,#007acc, #00E091);
border-radius: 3px;
background-size: 12rem 100%;
}
.skills_section_bar_fill.one {
width: 20%;
}
.skills_section_bar_fill.two {
width: 40%;
}
.skills_section_bar_fill.three {
width: 60%;
}
.skills_section_bar_fill.four {
width: 80%;
}
.skills_section_bar_fill.five {
width: 100%;
}
.skills_section_label {
width: 100%;
margin-top: 0.25rem;
color: var(--color);
font-size: 1rem;
}