﻿/* dpn-anpassning av html-element */
@media screen
{
    html, body {
	    background:black;
    }
    html{ font-size:100.01%; }
    body { font-size:62.5%; /* 62,5% = 10px, dvs nu är 1em = 10px, 1,2em = 12px osv. */
           font-family: Arial, Helvetica, Verdana, Sans-serif;
    }
    
    input,button,textarea,select
    {
    }
    
    h1, h2, h3, h4, h5, h6 /* Gemensamma attribut för rubriker */
    {
        line-height: 1.4em;
        color: #222;
    }


    h1 /* Rubrik nivå 1 - Huvudrubrik */
    {
        font-size:2.6em; /* =26px */
    }

    h2 /* Artikelingress */
    {
        font-size:1.3em; /* 13px */
        font-weight:bold;
        margin-top:1em;
        margin-bottom:1em; /* 12px */
    }

    h3 /* Rubrik nivå 2 - underrubrik 1 */
    {
        font-size:1.8em; /* 18px */
        margin-top:1em;
    }

    h4 /* Rubrik nivå 3 - underrubrik 2 */
    {
        font-size:1.4em; /* 14px */
        margin-top:1em;
        font-weight:bold;
    }

    h5 { }

    h6 { }

    p
    {
        line-height: 1.4em;
        font-family: 'Trebuchet MS', Verdana, Arial, Helvetica, Sans-serif;
        font-size:1.3em; /* = 12.5px */
        margin-bottom:1em; /* = 6px */
        color:#111;
    }

    a
        {
            color:#000;
            text-decoration:none;
        }
        

    a:hover
        {
            color:Orange;
            text-decoration:underline;
        }
       
}
