mobile.css 736 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. div.nav {
  2. height: 40px;
  3. -webkit-border-radius: 10px;
  4. -moz-border-radius: 10px;
  5. background-color: #ffffff;
  6. border: 1px solid #999999;
  7. text-align: center;
  8. margin-bottom: 1em;
  9. }
  10. div.nav label {
  11. line-height: 40px;
  12. color: black;
  13. font-weight: bold;
  14. }
  15. div.nav .button {
  16. position: static;
  17. margin: 5px 10px;
  18. -webkit-border-image: url(../lib/iui/whiteButton.png) 0 12 0 12;
  19. text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
  20. color: black;
  21. cursor: pointer; /* On a touch screen ? */
  22. }
  23. div.nav .button.left {
  24. float: left;
  25. }
  26. div.nav .button.right {
  27. float: right;
  28. }
  29. ul li a.read {
  30. color: #666666;
  31. }
  32. ul li span.browse {
  33. color : #909090;
  34. text-align : right;
  35. float : right;
  36. }