qmsk_www/static/style.css
author Tero Marttila <terom@paivola.fi>
Sun, 14 Sep 2014 13:11:22 +0300
changeset 225 a9bd09144985
parent 223 6a091bbffffd
permissions -rw-r--r--
styles.css: fix inline code styles
/*
 * Debootstrap
 */
a:hover {
    color: inherit;
}

code {
    color: inherit;
    background-color: inherit;
}

/*
 * Top header
 */
div#header {
    padding: 30px;
    
    border-bottom: 1px dashed #a5a5a5;
}

div#header h1 {
    font-size: 48pt;
    font-weight: bold;
}

div#header a:hover {
    text-decoration: none;
}

/*
 * Main navigation menu
 */
#nav {
    margin: 20px 0px;
}

#nav ul {

}

#nav ul ul {

}

#nav li a {

}

#nav li a:hover {
    background-color: #d0d0d0;
    text-decoration: none;
}

#nav li.page-tree-active {
    background-color: #808080;
}

/*
 * Content
 */
div#content {

}

div#breadcrumb {
    display: none;
    font-size: x-small;
}

/*
 * Footer
 */
div#footer {
    padding: 20px 0px;

    border-top: 1px dashed #a5a5a5;

    font-size: x-small;
    font-style: italic;
}

div#footer-left {
    float: left;
}

.page-footer-modified {
    float: right;
    text-align: right;
}

div#footer-center {
    text-align: center;
}

/*
 * General styles
 */
a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: xx-large;

    text-align: center;
}

h2 {
    font-size: large;
    
    margin-left: 0px;
    padding: 5px;
    width: 100%;

    background-color: #e5e5e5;
    
    border: 1px dashed #c5c5c5;
}

h3 {
    font-size: medium;
    font-style: italic;
}

#content p {
    margin-left: 0.5em;
}

#content li {
    padding: 2px;
}

#content a {
    padding-right: 13px;
    
    background: transparent url(/static/link.png) no-repeat center right;
}

dt {
    font-size: large;
}

dd {
    margin: 1em auto 1em 5em;
}

/* Inline code */

/* Code block */
pre {
    display: block;
    margin: 8px;
    padding: 8px;

    border: 1px dotted #b5b5b5;
}