/* Name: collegestyle.css Description: Style sheet for web programming lessons */ body { background-color: #8080c0; color: #ffffff; background-attachment: fixed; color: #ffffff; } body.iframes { background-image: none; color: #304030; } /* Properties of some pseudo elements */ a:link {color: white} a:visited {color: white} a:active {color: red} a:hover {background-color: #ffffaa} a.opdr:hover {background-color: #00ffff} /* Suppress underline for hyperlinks */ a.geenstreepje {text-decoration: none} /* This section defines properties of standard tags */ h1 {font: 24pt sans-serif; font-weight: bold} h2 {font: 20pt sans-serif; font-weight: bold} h3 {font: 18pt sans-serif; font-weight: bold} h1 {text-align: center; color: white} h2 {margin-left: 0.5cm; color: white} h3 {margin-left: 1cm; color: #ffe000} /* Some table properties */ table {color: #ffd070} table.bordered {color: #70c070; border-color: black; border-style: solid} th {color: #ffd070} td {color: white} dt {color: #ddd000} caption {color: #0000ff; background-color: #a0a0d0;} /* The parent also defines the properties for its children */ ul.magenta {color: fuchsia; background-color: #eec000} /* Properties of document-level tags */ em {font: italic bold 14pt sans-serif; color: #d0b000} /* nesting example for lists */ ul ul {color: fuchsia} /* In this section, a number of generic classes are defined */ .ital {font-style: italic} .smallfont {font-size: small} .normalbracket {color: red} .squarebracket {color: blue} /* Some span examples */ span.comment {color: #0020ff} span.ex1 {color: #ff0000} span.ex2 {color: #80a0c0} span.ex3 {color: yellow} span.ex4 {color: rgb(0,0,255)} span.ex5 {color: rgb(50%,75%,50%)} /* Some FONT examples */ span.serif {font: 20pt serif} span.sans-serif {font: 20pt sans-serif} span.cursive {font: 20pt cursive} span.fantasy {font: 20pt fantasy} span.courier {font: 20pt courier} span.times {font: 20pt Times} span.garamond {font: 20pt Garamond} span.monospace {font: 20pt monospace} span.helvetica {font: 20pt helvetica} span.univers {font: 20pt univers} span.ncs {font: 20pt 'new century schoolbook'} span.palatino {font: 20pt palatino} span.arial {font: 20pt arial} /* Some table classes */ table.multicol {color: #703070; background-color: #505050} td.nextsubject {padding-top: 5px} td.newgrp {padding-top: 20px} ul.blokje {list-style-type: square} img.penguin {border: yellow 5px dashed} /* div used to give functions a distiguished background */ div.function {width:50%; background-color: #b0c000; border: #b0c000 2px dashed} /* div used to give theory-questions a distiguished background */ div.question {position: relative; left: 15%; width:70%; text-align: center; background-color: #d0e000; color: #008000}