﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* Base structure. */
html,
body {
    height: 100%;
    color: rgb(17, 17, 17);
}

a,
a:focus,
a:hover {
    color: rgb(17, 17, 17);
    text-decoration: none;
}

/* Navigation bar. */
.headerbar {
    background-color: rgb(248, 249, 250);
}

.nav-link {
    font-weight: 700;
    color: rgb(17, 17, 17);
    padding: .25rem 0;
    border-bottom: 2px rgb(248, 249, 250) solid;
}

.nav-link:hover,
.nav-link:focus {
    padding: .25rem 0;
    border-bottom: 2px rgb(17, 17, 17) solid;
}

.nav-link + .nav-link {
    margin-left: 1rem;
}

.mailto {
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.envelope {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 5px;
}

.homepath {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25rem;
    position: relative;
    display: inline-block;
}

.homepath::after {
    content: "";
    display: inline-block;
    background-color: #007aff;
    vertical-align: top;
    width: 10px;
    height: 1.25rem;
    border-radius: 1px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Justified paragraphs. */
.text-justify {
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}