cppcheck/htdocs/site/css/all.css

169 lines
3.0 KiB
CSS
Raw Normal View History

2011-01-07 14:01:25 +01:00
body {
2012-11-14 23:31:56 +01:00
margin: 0;
padding: 0;
font-family: Calibri, Verdana, sans-serif;
color: #000;
background: #eee;
2011-01-07 14:01:25 +01:00
}
dt {
2012-11-14 23:31:56 +01:00
font-weight: bold;
}
2011-01-07 14:01:25 +01:00
/* Default link style */
2012-11-14 23:31:56 +01:00
a:link { color:#036; text-decoration:underline; }
a:visited { color:#036; text-decoration:underline; }
a:focus { color:#369; text-decoration:none; }
a:link:hover,
a:visited:hover { color:#369; text-decoration:none; }
a:active { color:#369; text-decoration:none; }
2011-01-07 14:01:25 +01:00
/* Header */
#header {
2012-11-14 23:31:56 +01:00
color: #69c;
background: #036;
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 h1 {
2012-11-14 23:31:56 +01:00
margin: 0;
padding: 0;
font-family: Orbitron, Calibri, Verdana, sans-serif;
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-11-14 23:31:56 +01:00
margin: 0;
padding: 0;
font-size: larger;
2011-01-07 14:01:25 +01:00
}
/* Tabs */
#tabs {
2012-11-14 23:31:56 +01:00
color: #eee;
background: #369;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
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-11-14 23:31: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
2011-01-07 14:01:25 +01:00
#tabs ul li {
2012-11-14 23:31:56 +01:00
display: inline;
margin: 0;
padding: 0 .5em;
border-right: 1px solid #000;
2011-01-07 14:53:52 +01:00
}
2012-11-14 23:31:56 +01:00
2011-01-07 14:53:52 +01:00
#tabs ul li:first-child {
2012-11-14 23:31:56 +01:00
padding-left: 0;
2011-01-07 14:53:52 +01:00
}
2012-11-14 23:31:56 +01:00
2011-01-07 14:53:52 +01:00
#tabs ul li:last-child {
2012-11-14 23:31:56 +01:00
border: none;
2011-01-07 14:01:25 +01:00
}
2012-11-14 23:31:56 +01:00
#tabs a:link { color:#eee; text-decoration:none; }
2011-01-07 14:01:25 +01:00
#tabs a:visited { color:#eee; text-decoration:none; }
2012-11-14 23:31:56 +01:00
#tabs a:focus { color:#fff; text-decoration:underline; }
#tabs a:hover { color:#fff; text-decoration:underline; }
#tabs a:active { color:#fff; text-decoration:underline; }
2011-01-07 14:01:25 +01:00
/* Anchors */
#anchors ul {
2012-11-14 23:31:56 +01:00
margin: 0;
padding: .5em 0;
list-style-type: none;
font-size: smaller;
}
2012-11-14 23:31:56 +01:00
#anchors ul li {
2012-11-14 23:31:56 +01:00
display: inline;
margin: 0;
padding: 0 .5em;
}
2012-11-14 23:31:56 +01:00
#anchors ul li:first-child {
2012-11-14 23:31:56 +01:00
padding-left: 0;
}
2012-11-14 23:31:56 +01:00
#anchors .wrap {
2012-11-14 23:31:56 +01:00
padding: 0;
}
2011-01-07 14:01:25 +01:00
/* Wrap */
.wrap {
2012-11-14 23:31:56 +01:00
width: 50em;
margin: 0 auto;
padding: .5em;
2011-01-08 21:47:44 +01:00
}
2011-01-14 22:48:33 +01:00
/* RSS feed items */
.rssfeeditems em {
2012-11-14 23:31:56 +01:00
margin-left: .5em;
color: #888;
font-size: smaller;
2011-01-14 22:48:33 +01:00
}
2011-01-25 17:38:55 +01:00
/* "Download Now!" link */
a.downloadnow {
2012-11-14 23:31:56 +01:00
display: block;
width: 12em;
margin: 0;
padding: 5px;
text-align: center;
text-decoration: none;
color: white;
background: #060;
border: 1px solid #060;
/* border-radius */
border-radius: .5em;
-moz-border-radius: .5em;
-khtml-border-radius: .5em;
-webkit-border-radius: .5em;
2011-01-25 17:38:55 +01:00
}
a.downloadnow:link,
a.downloadnow:visited {
2012-11-14 23:31:56 +01:00
text-decoration: none;
color: white;
2011-01-25 17:38:55 +01:00
}
a.downloadnow:focus,
a.downloadnow:hover {
2012-11-14 23:31:56 +01:00
text-decoration: none;
color: white;
background: #090;
2011-01-25 17:38:55 +01:00
}
a.downloadnow strong {
2012-11-14 23:31:56 +01:00
display: block;
font-size: larger;
font-weight: bold;
2011-01-25 17:38:55 +01:00
}
a.downloadnow em {
2012-11-14 23:31:56 +01:00
display: block;
font-size: smaller;
font-style: normal;
2011-01-25 17:38:55 +01:00
}
/* Command */
pre.cmd {
2012-11-14 23:31:56 +01:00
padding: .5em;
background: #f7f7f7;
border: 1px solid #c0c0c0;
border-left: 10px solid #c0c0c0;
}
2011-01-08 21:47:44 +01:00
/* Printing */
@media print {
2012-11-14 23:31:56 +01:00
#header { color: black; border-bottom: 1px solid black; }
#tabs { display: none; }
#resultsTable th { background: white; border: 1px solid black; }
#resultsTable td { background: white; border: 1px solid black; }
}