Newer
Older
Conjuro / media / style.css
/* Layout */
html, body{
    margin:0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width:100%;
    height:100%;
}
html{
    background-color: #e9edf1;
    font-size: 16px;
}
body{
    max-width: 900px;
    margin: 0 auto;
    position:relative;
    overflow: hidden;
}

#header{
    background-color: #4e6d8a;
    color:white;
    overflow: hidden;
    text-align: center;
    width: 100%;
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
}

#footer{
    position: absolute;
    bottom:0;
    background-color: #8fa5b9;
    text-align: right;
    font-size:16px;
    font-weight: bold;
    width: 100%;
    line-height: 24px;
    color:white;
}

#content{
    background-color: white;
    width:100%;
    height:100%;
    margin-bottom:84px;
    border-bottom:1px sold tomato;
}

/* Sections */

div.section{
    padding:4px 32px;
}
div.section>h2{
    text-align:center;
    text-decoration: underline;
    padding-top:16px;
    padding-bottom:5px;
    font-size: 24px;
    margin:0;
}
div.section>div{
    margin:0 auto;
}

table.form{
    margin:0 auto;
    border-collapse: collapse;
}
table.form td{
    padding:2px 5px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 16px;
}