﻿/*
    embedlinks.css

    embedlinks.css supports the embed links tool:
    embedlinks.js

    include general.css before embedlinks.css

    September 2 2022
*/


/*
    the main css classes used directly by the embedlinks.js tool
*/

.linkitem {
    /* it is intentional that this class has no content */
}

.textitem {
    /* it is intentional that this class has no content */
}

.commentitem {
    font-style: italic;
}

.headingitem {
    font-weight: bold;
}

.centerlinkitem {
    text-align: center;
}

.centertextitem {
    text-align: center;
}

.centercommentitem {
    text-align: center;
    font-style: italic;
}

.centerheadingitem {
    text-align: center;
    font-weight: bold;
}

/*
    titleitem and subtitleitem have:
        bold
        must be centered
        larger font size
        larger margin-bottom
*/
.titleitem, .subtitleitem {
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: center;
}

.titleitem {
    font-size: 115%;
}

.subtitleitem {
    font-size: 105%;
}

/*
    here are variants of titleitem and subtitleitem
    that will text align left
*/
.titleleftitem, .subtitleleftitem {
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: left;
}

.titleleftitem {
    font-size: 115%;
}

.subtitleleftitem {
    font-size: 105%;
}
