cppcheck/htdocs/site/css/all.css

183 lines
2.8 KiB
CSS
Raw Normal View History

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