all.css: no need to overqualify tags. Also merge two identical selectors.

This commit is contained in:
XhmikosR 2013-01-23 09:52:48 +02:00 committed by Daniel Marjamäki
parent 569b2ae9cd
commit 392960513b
2 changed files with 10 additions and 11 deletions

View File

@ -54,18 +54,18 @@ a:active { color:#369; text-decoration:none; }
font-size: larger; font-size: larger;
} }
#tabs ul li { #tabs li {
display: inline; display: inline;
margin: 0; margin: 0;
padding: 0 .5em; padding: 0 .5em;
border-right: 1px solid #000; border-right: 1px solid #000;
} }
#tabs ul li:first-child { #tabs li:first-child {
padding-left: 0; padding-left: 0;
} }
#tabs ul li:last-child { #tabs li:last-child {
border: none; border: none;
} }
@ -85,13 +85,13 @@ a:active { color:#369; text-decoration:none; }
font-size: smaller; font-size: smaller;
} }
#anchors ul li { #anchors li {
display: inline; display: inline;
margin: 0; margin: 0;
padding: 0 .5em; padding: 0 .5em;
} }
#anchors ul li:first-child { #anchors li:first-child {
padding-left: 0; padding-left: 0;
} }
@ -117,7 +117,7 @@ a:active { color:#369; text-decoration:none; }
/* "Download Now!" link */ /* "Download Now!" link */
a.downloadnow { .downloadnow {
display: block; display: block;
width: 12em; width: 12em;
margin: 0; margin: 0;
@ -127,7 +127,6 @@ a.downloadnow {
color: white; color: white;
background-color: #060; background-color: #060;
border: 1px solid #060; border: 1px solid #060;
/* border-radius */
border-radius: .5em; border-radius: .5em;
-webkit-border-radius: .5em; -webkit-border-radius: .5em;
-khtml-border-radius: .5em; -khtml-border-radius: .5em;
@ -154,13 +153,13 @@ a.downloadnow:hover {
transition: background-color 0.20s ease-in-out; transition: background-color 0.20s ease-in-out;
} }
a.downloadnow strong { .downloadnow strong {
display: block; display: block;
font-size: larger; font-size: larger;
font-weight: bold; font-weight: bold;
} }
a.downloadnow em { .downloadnow em {
display: block; display: block;
font-size: smaller; font-size: smaller;
font-style: normal; font-style: normal;
@ -178,6 +177,6 @@ pre.cmd {
@media print { @media print {
#header { color: black; border-bottom: 1px solid black; } #header { color: black; border-bottom: 1px solid black; }
#tabs { display: none; } #tabs { display: none; }
#resultsTable th { background-color: white; border: 1px solid black; } #resultsTable th,
#resultsTable td { background-color: white; border: 1px solid black; } #resultsTable td { background-color: white; border: 1px solid black; }
} }

File diff suppressed because one or more lines are too long