﻿* {
    box-sizing: border-box;
}

:root {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

::selection {
    background-color: #ff891a;
    color: #fff;
}

html, body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

body {
    margin: 0;
    font-family: Calibri, sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

a {
    color: #ff891a;
    font-weight: bold;
}

header {
    flex: 0 1 320px;
    height: 100vh;
    margin: 0;
    padding: 8px 16px 32px;
    font-size: 16px;
    background-color: #872963;
    box-shadow: 0 0 10px rgba(0,0,0,.35);
}

header > .logo {
    width: 120px;
    height: auto;
}

header > .logo > .dot {
    fill: #ff891a;
}

header > .logo > g > .cta,
header > .logo > .letter {
    fill: #fff;
}

header > nav {
    user-select: none;
}

header > nav  > ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 -16px;
}

header > nav > ul > li {
    padding:  0;
}

header > nav > ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
    font-weight: 300;
    display: block;
    width: 100%;
    height: 48px;
    font-size: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 32px;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255,255,255,.5);
    background-color: transparent;
    transition: all 350ms;
}

    header > nav > ul > li > a:hover,
    header > nav > ul > li > a.-current {
        background-color: rgba(255,255,255,.25);
    }

    header > code {
        display: block;
        color: #fff;
        padding: 0 4px;
        margin-bottom: 32px;
    }

main {
    flex: 1 1 auto;
    position: relative;
}

article {
    padding: 16px;
}

    article > p {
        margin: 0 0 1em 0;
    }

article > h1 {
    font-size: 2rem;
    color: #fff;
    margin: 1em 0;
    text-align: center;
}

    article > h1 > a {
        display: inline-block;
        padding: 5px 30px;
        text-decoration: none;
        color: #fff;
        background-color: #872963;
        box-shadow: 0 0 3px rgba(0,0,0,.5);
        transition-property: background-color, box-shadow;
        transition-duration: 400ms;
    }

        article > h1 > a:hover, main > h1 > a:focus {
            background-color: #ff891a;
            box-shadow: 0 0 5px rgba(0,0,0,.5);
        }

        article > h1 > a:active {
            background-color: #ff891a;
            box-shadow: 0 0 1px rgba(0,0,0,.5);
        }

article > h2 {
    font-size: 1.83rem;
    color: #872963;
    margin: 0 0 .5em 0;
}

article > pre {
    margin: 0 0 1em 0;
    padding: 0;
}

article code {
    font-weight: bold;
    background-color: #eee;
    white-space: nowrap;
}

main > div > .nuget-feed,
main > div > .nuget-feed > .heading {
    background-color: #fafafa;
}

main > div > .nuget-feed > .content > .list > ul > li > article {
    background-color: #fff;
}

    main > div > .nuget-feed > .content > .detail > .message {
        font-size: 125%;
        color: #cbcbcb;
        height: 100%;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
        align-content: center;
    }

    main > div > .nuget-feed > .content > .detail {
        padding: 8px !important;
    }

    main > div > .nuget-feed > .content > .detail > .nuget-package-properties {
        padding: 16px !important;
        background-color: #fff;
        box-shadow: 0 0 3px rgba(0,0,0,.25);
    }
 
