html,
body {
height: 100%;
background-color: #495057;
color: #fff;
}
.text-lightish {
color: #dee2e6;
}
.bg-lightish {
background-color: #dee2e6;
}
.font-weight-semibold {
font-weight: 600;
}
.jumbotron-font-1 {
font-size: 2rem;
}
@media screen and (min-width: 576px) {
.jumbotron-font-1 {
font-size: 2.5rem;
}
}
@media screen and (min-width: 768px) {
.jumbotron-font-1 {
font-size: 4rem;
}
}
.jumbotron-font-2 {
font-size: 1.5rem;
}
@media screen and (min-width: 576px) {
.jumbotron-font-2 {
font-size: 1.75rem;
}
}
@media screen and (min-width: 768px) {
.jumbotron-font-2 {
font-size: 3rem;
}
}
.jumbotron-font-3 {
font-size: 1rem;
}
@media screen and (min-width: 576px) {
.jumbotron-font-3 {
font-size: 1.125rem;
}
}
@media screen and (min-width: 768px) {
.jumbotron-font-3 {
font-size: 1.75rem;
}
}
.navbar {
position: sticky;
top: 0;
z-index: 1071;
min-height: 4rem;
background-color: #212529;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
margin-bottom: 0rem;
display: flex;
align-items: center;
}
.navbar .navbar-brand {
font-weight: 600;
margin-bottom: 0rem;
}
.navbar .vertical-divider {
width: 2px;
height: 2rem;
background-color: rgba(255, 255, 255, 0.5);
margin-right: 1rem;
}
.navbar .nav-link,
.navbar .nav-item {
padding: 0.25rem 0rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.5);
background-color: transparent;
text-decoration: none;
}
.navbar .nav-link.active {
color: #fff;
}
.sidebar {
position: sticky;
top: 4rem;
z-index: 1000;
height: auto;
display: flex;
}
@media screen and (min-width: 768px) {
.sidebar {
height: calc(100vh - 4rem);
}
}
.sidebar .nav-item {
margin-bottom: 0.25rem;
}
.sidebar .nav-item .nav-link {
font-size: 1.125rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.5);
text-decoration: none;
}
.sidebar .nav-item.active {
background-color: #495057;
border-radius: 0.25rem;
border-right: solid 3px #fe1379;
}
.sidebar .nav-item.active .nav-link {
color: #fff;
font-weight: 700;
}
.main-content {
padding: 1rem;
max-height: calc(100vh - 4rem);
overflow-y: scroll;
}
.resume-card-title {
color: #212529;
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.25rem;
padding: 0rem;
text-decoration-line: none;
text-align: left;
}
.resume-card-title:hover, .resume-card-title:focus {
color: #212529;
text-decoration-line: none;
box-shadow: none;
}
.rotate-on-selected-180 {
transform: rotate(0deg);
transition: transform 0.5s;
}
.selected .rotate-on-selected-180 {
transform: rotate(180deg);
transition: transform 0.5s;
}
[role=button],
a.nav-link,
a.nav-item {
cursor: pointer;
}
.disabled,
:disabled {
cursor: not-allowed;
}
h6, .h6 {
font-weight: 600;
}
.exclude-stretched-link {
z-index: 2;
position: relative;
}
.card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #212529;
z-index: 1080;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 2.25rem;
font-weight: 300;
opacity: 0.75;
cursor: not-allowed;
}