summaryrefslogtreecommitdiff
path: root/mobile/mobile.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-06-04 11:50:22 +0400
committerAndrew Dolgov <[email protected]>2010-06-04 11:50:22 +0400
commita6d56d81b1bde141976f9fad6aebab1fd58bd022 (patch)
treee134b3b46c9aba7d88d196bb210398def6fa3fe6 /mobile/mobile.css
parente74fbbf8cc668bc09092fbcfbfe27a7e95814265 (diff)
mobile: add article navigation (closes #269)
Diffstat (limited to 'mobile/mobile.css')
-rw-r--r--mobile/mobile.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/mobile/mobile.css b/mobile/mobile.css
new file mode 100644
index 000000000..bbf286b07
--- /dev/null
+++ b/mobile/mobile.css
@@ -0,0 +1,32 @@
+div.nav {
+ height: 40px;
+ -webkit-border-radius: 10px;
+ -moz-border-radius: 10px;
+ background-color: #ffffff;
+ border: 1px solid #999999;
+ text-align: center;
+ margin-bottom: 1em;
+}
+div.nav label {
+ line-height: 40px;
+ color: black;
+ font-weight: bold;
+}
+div.nav .button {
+ position: static;
+ margin: 5px 10px;
+ -webkit-border-image: url(../lib/iui/whiteButton.png) 0 12 0 12;
+ text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
+ color: black;
+ cursor: pointer; /* On a touch screen ? */
+}
+div.nav .button.left {
+ float: left;
+}
+div.nav .button.right {
+ float: right;
+}
+
+ul li a.read {
+ color: #666666;
+}