/*
 * CSS para as páginas de MC102, oferecimento 2018. 
 */

* { /* Padding e border são incluídos na altura e largura dos
   elementos. Facilita a construção de responsive grid-views */
    box-sizing: border-box;
}

body {
    background: white-smoke;
    font-family: arial;
}

h1 {
    font-family: courier;
    border: 3px; 
    border-bottom-style: solid;
    color: gray;
}

h2, h3 {
    font-family: courier;
    border: 2px; 
    border-bottom-style: solid;
}

table, td, th {
    border: 1px solid gray;
    border-collapse: collapse;
    padding: 4px;
    margin: auto;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the content */
.content {
    background-color: #ddd;
    padding: 10px;
}
