2013-06-05 10:24:52 +02:00
|
|
|
/*csslint box-sizing: false, ids: false, qualified-headings: false*/
|
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
body {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2013-04-09 10:18:12 +02:00
|
|
|
font: 16px Calibri, Verdana, sans-serif;
|
2013-01-23 08:44:10 +01:00
|
|
|
color: black;
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #eee;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
|
|
|
|
2012-05-27 15:41:18 +02:00
|
|
|
dt {
|
2012-12-03 12:42:56 +01:00
|
|
|
font-weight: bold;
|
2012-05-27 15:41:18 +02:00
|
|
|
}
|
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
/* Default link style */
|
2013-04-09 10:18:12 +02:00
|
|
|
a:hover {
|
|
|
|
-webkit-transition: all 0.20s ease-in-out;
|
|
|
|
-moz-transition: all 0.20s ease-in-out;
|
|
|
|
-o-transition: all 0.20s ease-in-out;
|
|
|
|
transition: all 0.20s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
a:link,
|
2013-03-17 13:06:50 +01:00
|
|
|
a:visited { color: #036; text-decoration: underline; }
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2013-04-09 10:18:12 +02:00
|
|
|
a:active,
|
2012-12-23 18:03:25 +01:00
|
|
|
a:focus,
|
2013-04-09 10:18:12 +02:00
|
|
|
a:hover,
|
2013-06-05 11:19:08 +02:00
|
|
|
a:visited { color: #369; }
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
|
|
|
|
/* Header */
|
|
|
|
#header {
|
2012-12-03 12:42:56 +01:00
|
|
|
color: #69c;
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #036;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-07-18 17:34:28 +02:00
|
|
|
#header a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
#header h1 {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2013-04-09 10:18:12 +02:00
|
|
|
font-family: Orbitron;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
#header p {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: larger;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tabs */
|
|
|
|
#tabs {
|
2012-12-03 12:42:56 +01:00
|
|
|
color: #eee;
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #369;
|
2013-01-23 08:44:10 +01:00
|
|
|
border-top: 1px solid black;
|
|
|
|
border-bottom: 1px solid black;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
#tabs ul {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
font-size: larger;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-01-23 08:52:48 +01:00
|
|
|
#tabs li {
|
2012-12-03 12:42:56 +01:00
|
|
|
display: inline;
|
|
|
|
padding: 0 .5em;
|
2013-01-23 08:44:10 +01:00
|
|
|
border-right: 1px solid black;
|
2011-01-07 14:53:52 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-01-23 08:52:48 +01:00
|
|
|
#tabs li:first-child {
|
2012-12-03 12:42:56 +01:00
|
|
|
padding-left: 0;
|
2011-01-07 14:53:52 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-01-23 08:52:48 +01:00
|
|
|
#tabs li:last-child {
|
2012-12-03 12:42:56 +01:00
|
|
|
border: none;
|
2011-01-07 14:01:25 +01:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
#tabs a:link,
|
2013-03-17 13:06:50 +01:00
|
|
|
#tabs a:visited { color: #eee; text-decoration: none; }
|
2012-11-19 00:29:55 +01:00
|
|
|
|
|
|
|
#tabs a:focus,
|
|
|
|
#tabs a:hover,
|
2013-03-17 13:06:50 +01:00
|
|
|
#tabs a:active { color: white; text-decoration: underline; }
|
2011-01-07 14:01:25 +01:00
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2012-07-14 14:50:27 +02:00
|
|
|
/* Anchors */
|
|
|
|
#anchors ul {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: .5em 0;
|
|
|
|
list-style-type: none;
|
|
|
|
font-size: smaller;
|
2012-07-14 14:50:27 +02:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-01-23 08:52:48 +01:00
|
|
|
#anchors li {
|
2012-12-03 12:42:56 +01:00
|
|
|
display: inline;
|
|
|
|
padding: 0 .5em;
|
2012-07-14 14:50:27 +02:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2013-01-23 08:52:48 +01:00
|
|
|
#anchors li:first-child {
|
2012-12-03 12:42:56 +01:00
|
|
|
padding-left: 0;
|
2012-07-14 14:50:27 +02:00
|
|
|
}
|
2012-11-14 23:31:56 +01:00
|
|
|
|
2012-07-14 14:50:27 +02:00
|
|
|
#anchors .wrap {
|
2012-12-03 12:42:56 +01:00
|
|
|
padding: 0;
|
2012-07-14 14:50:27 +02:00
|
|
|
}
|
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2011-01-07 14:01:25 +01:00
|
|
|
/* Wrap */
|
|
|
|
.wrap {
|
2012-12-03 12:42:56 +01:00
|
|
|
width: 50em;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: .5em;
|
2013-03-17 13:30:03 +01:00
|
|
|
-webkit-box-sizing: content-box;
|
|
|
|
-moz-box-sizing: content-box;
|
|
|
|
box-sizing: content-box;
|
2011-01-08 21:47:44 +01:00
|
|
|
}
|
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2011-01-14 22:48:33 +01:00
|
|
|
/* RSS feed items */
|
|
|
|
.rssfeeditems em {
|
2012-12-03 12:42:56 +01:00
|
|
|
margin-left: .5em;
|
|
|
|
color: #888;
|
|
|
|
font-size: smaller;
|
2011-01-14 22:48:33 +01:00
|
|
|
}
|
|
|
|
|
2013-03-16 18:02:32 +01:00
|
|
|
a.author:link,
|
|
|
|
a.author:visited,
|
|
|
|
a.author:link:hover,
|
|
|
|
a.author:visited:hover,
|
|
|
|
a.author:focus,
|
|
|
|
a.author:active {
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
|
2012-11-19 00:29:55 +01:00
|
|
|
|
2011-01-25 17:38:55 +01:00
|
|
|
/* "Download Now!" link */
|
2013-06-05 11:19:08 +02:00
|
|
|
a.downloadnow {
|
2012-12-03 12:42:56 +01:00
|
|
|
display: block;
|
|
|
|
width: 12em;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: white;
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #060;
|
2012-12-03 12:42:56 +01:00
|
|
|
border: 1px solid #060;
|
2013-07-18 17:34:28 +02:00
|
|
|
-webkit-border-radius: 0.5em;
|
|
|
|
-khtml-border-radius: 0.5em;
|
|
|
|
-moz-border-radius: 0.5em;
|
|
|
|
border-radius: 0.5em;
|
2013-03-17 13:30:03 +01:00
|
|
|
-webkit-box-sizing: content-box;
|
|
|
|
-moz-box-sizing: content-box;
|
|
|
|
box-sizing: content-box;
|
2011-01-25 17:38:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a.downloadnow:focus,
|
|
|
|
a.downloadnow:hover {
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #090;
|
2011-01-25 17:38:55 +01:00
|
|
|
}
|
|
|
|
|
2013-06-05 11:19:08 +02:00
|
|
|
a.downloadnow strong {
|
2012-12-03 12:42:56 +01:00
|
|
|
display: block;
|
|
|
|
font-size: larger;
|
|
|
|
font-weight: bold;
|
2011-01-25 17:38:55 +01:00
|
|
|
}
|
|
|
|
|
2013-06-05 11:19:08 +02:00
|
|
|
a.downloadnow em {
|
2012-12-03 12:42:56 +01:00
|
|
|
display: block;
|
|
|
|
font-size: smaller;
|
|
|
|
font-style: normal;
|
2011-01-25 17:38:55 +01:00
|
|
|
}
|
|
|
|
|
2012-07-07 17:39:50 +02:00
|
|
|
/* Command */
|
2013-03-17 13:42:20 +01:00
|
|
|
.cmd {
|
2012-12-03 12:42:56 +01:00
|
|
|
padding: .5em;
|
2013-01-21 11:24:12 +01:00
|
|
|
background-color: #f7f7f7;
|
2012-12-23 18:03:25 +01:00
|
|
|
border: 1px solid silver;
|
|
|
|
border-left: 10px solid silver;
|
2012-07-07 17:39:50 +02:00
|
|
|
}
|
|
|
|
|
2011-01-08 21:47:44 +01:00
|
|
|
/* Printing */
|
|
|
|
@media print {
|
2012-12-03 12:42:56 +01:00
|
|
|
#header { color: black; border-bottom: 1px solid black; }
|
|
|
|
#tabs { display: none; }
|
2013-01-23 08:52:48 +01:00
|
|
|
#resultsTable th,
|
2013-01-21 11:24:12 +01:00
|
|
|
#resultsTable td { background-color: white; border: 1px solid black; }
|
2012-11-14 23:31:56 +01:00
|
|
|
}
|