/* Basic styling based on LU graphical profile. */
/* Additional color variants found using W3 color wheel. */

body {
    font-family: "Arial";
    font-size: 80%
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Georgia";
}

h1 {
    color:#8E5614; /* Basic LU brown color */
}

hr {
    border-color: #8E5614;
}

a:link {
    color: #8E5614; /* unvisited link */
}

a:visited {
    color: #b36b19; /* visited link */
}

/* Handle archived pages */

.archived {font-size:200%; font-weight: bold; color: red;}

   /* ADD THIS WHEN COURSE IS OVER
.archived:before {
    content: 'ARCHIVED COURSE PAGE 2017/2018';
}
body {
    background-color: #FBE5F0;
}
  */



/* Navigation bar */
/* see: jsfiddle.net/ZQQY4 */

.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #efc28f;
}
.nav li {
    float: left;
    }
.nav li a {
    display: block;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.nav li a:hover:not(.active) {
    background-color: #59360d;
}

.active {
    background-color: #8E5614; /* Basic LU brown color */
}


/* Give printed web page larger margin */
@media print{
  body{
    /* font-size: 80%; */
    margin-left: 2cm;
    margin-right: 2cm;
  }
}

/* Turn off buggy auto adjust of fonts on mobile phones (bug on Iphone and some Samsung).
   Use manual font increase instead. */
@media screen and (max-device-width: 480px){
  body{
    -webkit-text-size-adjust: none;
    font-size: 200%;
  }
}

.lecture-table {
    border-spacing: 1em;
}

.lecture {
}

.lecture-week-separator {
    font-family: "Arial Black";
    color: white;
    background: #8E5614;
    width: 100%;
    caption-side: top;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4em;
}

.lecture-break {
    font-family: "Arial Black";
    width: 100%;
    caption-side: top;
    text-align: center;
    vertical-align: middle;
    font-size: 1.4em;
    background:#ccc;
}

.lecture-time, .lecture-title, .lecture-contents, .lecture-nr, .lecture-skills {
    height: auto;
    text-align: center;
    vertical-align: middle;
}

.lecture-videos {
    width: 8em;
    font-family: "Arial Black";
    border: 0.1em solid #8E5614;
    text-align: center;
    /* background: #efc28f; */
}

.lecture-time {
    width: 8em;
    font-family: "Arial Black";
    border: 0.1em solid #8E5614;
    background: #efc28f;
}

.lecture-title {
    font-family: "Arial Black";
    font-size: 1.2em;
}

.lecture-skills {
    width: 30%;
    background: #eee;
    text-align: left;
}

.lecture-contents {
    width: 50%;
    border: 0.1em solid #000;
    text-align: left;
}

.extbl th {
    font-family: "Arial Black";
    font-size: 1.2em;
    color: white;
    padding: 0.5ex;
    border: 0.1em solid #000;
    background-color: #59360d;
    text-align: center;
}

.canvas-style {
    color: green;
    width: 40em;
    height: 20em;
}

.extbl td {
    padding: 0.5ex;
    text-align: left;
    background: #efc28f;
}

