static/irclogs.css
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 02:55:53 +0200
branchsites
changeset 43 fc11c4e86a82
parent 42 5a72c00c4ae4
child 49 aaa62c8e5bd5
permissions -rw-r--r--
implement channel_view count, the query stuff, css, layout all need some cleanup :(
/*
 * Global styles
 */
body {
    padding: 0px;
    margin: 0px;

    background-color: #ffffff;
    color: #000000;
}

/*
 * Menu
 */
#menu {
    padding: 0px;
    margin: 0px;
}

#menu ul {
    display: table;
    list-style-type: none;

    width: 100%;

    padding: 0px;
    margin: 0px;
    
    background-color: #f0f0f0;
    border-bottom: 1px dashed #a5a5a5;

    text-align: center;
    white-space: nowrap;
}

#menu li {
    display: table-cell;

    height: 1.5em;

    padding: 0px;
    margin: 0px;

    border-left: 1px solid #b0b0b0;

    font-weight: bold;
}

#menu li a,
#menu li form {
    height: 1.5em;
}

#menu li:first {
    border-left: none;
}

#menu li a {
    display: block;

    padding: 6px;
    margin: 0px;

    height: 100%;

    color: #494949;
    text-decoration: none;
}

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

#menu form {
    display: block;

    padding: 0px;
    margin: 0px;
}

#menu form select,
#menu form input {
    padding: 9px;
    margin: 0px;

    border: none;
    background-color: inherit;
}

#menu form input {
    cursor: pointer;
}

#menu form select:hover,
#menu form input:hover {
    background-color: #d0d0d0;
}

#menu form option {
    background-color: auto;
}

/*
 * Content
 */
div#content {
    padding: 25px;
}

/*
 * Footer
 */
div#footer {
    width: 100%;
    padding: 10px 0px 10px;
    
    border-top: 1px dashed #a5a5a5;

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

div#footer-left {
    float: left;
}

div#footer-right {
    float: right;
    text-align: right;
}

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