/* general css for frlan.xyz articles */
/* check default css: https://www.w3schools.com/cssref/css_default_values.asp */

body {
    background-color: white;
    color: black;
    font-family: sans-serif; /* more readable on computer screens than serif fonts */
    font-size: large;
}

div#allc { /* div jello layout for all content */
    width: 800px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

div#frlan {
    font-size: 240%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    width: 60%;
    float: left;
}

#frlan a {
    color: black;
    text-decoration: none;
}

#frlan a:hover {
    text-decoration: underline;
}

div#language { /* select between english and slovene */
    font-size: 90%;
    text-transform: uppercase;
    line-height: 320%;
    width: 40%;
    display: inline-block;
}

#language a {
    color: black;
    text-decoration: none;
}

#language a:hover {
    text-decoration: underline;
}

h1 { /* main article title */
    font-size: 240%;
    font-weight: normal;
}

div#publish {
    font-size: 0.9em;
    line-height: 1.5em;
    width: 60%;
    float: left;
}

div#count {
    font-size: 0.9em;
    line-height: 1.5em;
    width: 40%;
    display: inline-block;
    margin-bottom: 0.5em;
}

h2 { /* article subtitle */
    font-size: 180%;
    font-weight: normal;
}

h2 a {
    color: black;
}

h3 { /* article sub-subtitle */
    font-size: 135%;
    font-weight: normal;
    text-indent: 1em;
}

p {
    line-height: 1.5em;
}

b, em, br {} /* default property */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.em2 {
    text-transform: uppercase;
}

.em3 {
    text-transform: capitalize;
}

.left {
    margin-left: 3em;
}

blockquote {
    font-style: italic;
}

ul, ol, dl { /* unordered, ordered, description list */
    line-height: 1.3em;
}

li, dt, dd {} /* default property */

.column2 { /* two column list */
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    line-height: 1.3em;
}

figure {
    text-align: center;
    font-size: 90%;
}

table {
    line-height: 1.3em;
    font-size: 85%;
    margin-left: 1em;
}

caption { /* table caption */
    font-weight: bold;
}

th { /* table header */
    padding-right: 1em;
    font-weight: bold;
}

td { /* table data */
    padding-right: 1em;
}

hr { /* horizontal rule */
    color: black;
    border-style: solid;
    border-width: 1px;
    width: 4em;
}

.summary {
    background: rgba(240, 240, 240, 0.8);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}
