/* General Styling */
html,
body {
    font-family: 'Inconsolata', monospace;
    margin: 0;
    padding: 0;
}

#title
{
    font-weight: bold;
    display: inline;
}

#title::before
{
    content: '~# ';
}

div.header {
    margin: 0 8px;
}

div.header-title {
    user-select: none;
    display: block;
    margin: 1.25rem 0;
}

div.header-title a
{
    font-weight: normal;
    font-style: normal;
    line-height: 1rem;
}

div.header-title h1,
div.header-title a {
    user-select: text;
}

a
{
    font-style: italic;
}

a.link::before
{
    content: '>';
}

a.link::after
{
    content: '<';
}

.hr-style
{
    border-width: 1px;
    border-style: solid;
    color: #000000;
}

main.content {
    margin: 8px;
}

/* Styling of project items */
.item-title {
    font-size: 1.2rem;
}

.item-link {
    font-size: 0.9rem;
    margin-left: 0.75rem;
}

.item-version {
    font-style: italic;
    margin-left: 0.5rem;
}

/*.item-version::before {*/
/*    content: '\00B7  ';*/
/*}*/

.item-wrapper {
    float: left;
}

.item p {
    clear: both;
}

[data-status=deprecated],
[data-supported=false] {
    color: #FFFFFF;
    background-color: #931027;
}

[data-status=alpha] {
    background-color: #FF8C00;
}

[data-status=beta] {
    background-color: greenyellow;
}

[data-status=released],
[data-supported=true] {
    color: #FFFFFF;
    background-color: #228B22;
}

.item-status {
    margin: 5px 0;
    user-select: none;
    float: right;
}

.item-status > span {
    display: inline-block;
    border: 1px solid black;
    border-radius: 10px;
    padding: 2px 5px;
    width: 160px;
    text-align: center;
}

.icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
    top: 3px;
}

.icon.icon-law {
    background-image: url("icons.svg#icon-law");
}

.item-license {
    user-select: none;
}

.item-license .icon {
    height: 1em !important;
    width: 1em !important;
}

.item-license .text {
    display: inline-block;
    margin-left: -.3em;

    user-select: text;
}

.middot::before {
    content: ' \00B7 ';
}