diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/rpmphp.css | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/css/rpmphp.css b/css/rpmphp.css index 89ce374..33e7f64 100644 --- a/css/rpmphp.css +++ b/css/rpmphp.css @@ -22,18 +22,21 @@ input{ input[type='submit']:hover{ background-color:#bbb; color:#fff; + cursor:pointer; } h1{ color:#3C6EB4; padding:.2em; margin:.2em 0; + font-size:1.6em; } h2{ color:#666666; padding:.1em; margin:.3em 1em; + font-size:1.4em; } a{ @@ -133,15 +136,20 @@ p{ border-collapse:collapse; } -#list-packages caption{ +#list-packages caption, +#upstream caption{ background-color:#2963A6; color:white; padding:.1em 0; + -moz-border-radius:5px 5px 0 0; + -webkit-border-radius:5px 5px 0 0; + font-weight:bold; } #list-packages td, #list-packages th{ padding:.2em; + background-color:white; } #list-packages thead th{ @@ -155,6 +163,10 @@ p{ border-top:1px solid #DDDDDD; } +#list-packages h2{ + text-align:center; +} + #filter{ display:inline-block; position:absolute; @@ -171,11 +183,30 @@ p{ font-style:italic; } -#legend{ - margin:0 auto; +#legend, #upstream{ + margin:.5em 1em; list-style:none; - width:20%; - text-align:center; + width:20em; + /*text-align:center;*/ + background-color:#E5E5E5; + -moz-border-radius:5px 5px 5px 5px; + -webkit-border-radius:5px 5px 5px 5px; + padding:.5em 2em; +} + +#upstream { + -moz-border-radius:0 0 5px 5px; + -webkit-border-radius:0 0 5px 5px; + width:90%; + margin:.5em auto; +} + +#upstream th{ + text-align:right; +} +#upstream td{ + padding-left:1em; + text-align:left; } .error { |