diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-20 02:05:54 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-20 02:05:54 -0800 |
commit | b288444a88cfc5393714e7063284d5334b6887f5 (patch) | |
tree | 7515f0f6bebe2d15fa4a0ad2163144ee49142cfd /css | |
parent | 1c65a1a164008e993fba099723fc3039c2332a9c (diff) | |
download | pathery-b288444a88cfc5393714e7063284d5334b6887f5.tar.xz |
Fixed position header.
Diffstat (limited to 'css')
-rw-r--r-- | css/page.css | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/css/page.css b/css/page.css index ae2763d..ad45e8b 100644 --- a/css/page.css +++ b/css/page.css @@ -255,7 +255,10 @@ position:absolute;color:#333;left:25px;bottom:20px; -
+.topbarSpacer {
+ width:900px;
+ height:70px;
+}
.wrapper {
width: 900px;
margin: 0 auto;
@@ -285,10 +288,17 @@ position:absolute;color:#333;left:25px;bottom:20px; padding: 15px 15px;
margin: 0 auto 40px;
text-align: center;
- position: relative; /* for #user */
+ position: fixed; /* for #user */
min-width: 900px;
- background: -moz-linear-gradient(top, #252525, #121212);
- background: -webkit-linear-gradient(top, #252525, #121212);
+ width:100%;
+ background: -moz-linear-gradient(top, #555, #222);
+ background: -webkit-linear-gradient(top, #555, #222);
+ z-index:9999;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
+ filter: alpha(opacity=90);
+ -moz-opacity: 0.9;
+ -khtml-opacity: 0.9;
+ opacity: 0.9;
}
#topbar a.nav {
background-color: #222;
@@ -305,7 +315,7 @@ position:absolute;color:#333;left:25px;bottom:20px; }
#topbar #user {
position: absolute;
- right: 25px;
+ right: 45px;
top: 5px;
text-align: right;
}
@@ -364,10 +374,10 @@ table.score th, table.score td { padding: 0px 4px 0px 4px;
}
table.score td {
- font-size:105%;
+ font-size: 13pt;
}
table.score th {
- border: 1px solid #777;
+ border-top: 1px solid #777;
}
#copy {
|