/**
 * custom.js
 *
 * @author Sebastián Ramírez <tiangolo@gmail.com>
 * @license MIT
 */

.termynal-comment {
    color: #4a968f;
    font-style: italic;
    display: block;
}

.termy [data-termynal] {
    white-space: pre-wrap;
}

a.external-link::after {
    /* \00A0 is a non-breaking space
        to make the mark be on the same line as the link
    */
    content: "\00A0↪";
}

/*Usage example: <a href="https://henriquesebastiao.com/" class="external-link" target="_blank">Hick</a>*/

/*a.internal-link::after {*/
/*    !* \00A0 is a non-breaking space*/
/*        to make the mark be on the same line as the link*/
/*    *!*/
/*    content: "\00A0↪";*/
/*}*/

.center {
    display: block;
    margin: 0 auto;
}