home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_2969 < prev    next >
Encoding:
Text File  |  2010-08-05  |  1.4 KB  |  84 lines

  1. /* CSS for the mobile version of the content server webpage */
  2.  
  3. .navigation table.buttons {
  4.     width: 100%;
  5. }
  6.  
  7. .navigation .button {
  8.     width: 50%;
  9. }
  10.  
  11. .button a, .button:visited a {
  12.     padding: 0.5em;
  13.     font-size: 1.25em;
  14.     border: 1px solid black;
  15.     text-color: black;
  16.     background-color: #ddd;
  17.     border-top: 1px solid ThreeDLightShadow;
  18.     border-right: 1px solid ButtonShadow;
  19.     border-bottom: 1px solid ButtonShadow;
  20.     border-left: 1 px solid ThreeDLightShadow;
  21.     -moz-border-radius: 0.25em;
  22.     -webkit-border-radius: 0.25em;
  23. }
  24.  
  25. .button:hover a {
  26.     border-top: 1px solid #666;
  27.     border-right: 1px solid #CCC;
  28.     border-bottom: 1 px solid #CCC;
  29.     border-left: 1 px solid #666;
  30.  
  31.  
  32. }
  33.  
  34. div.navigation {
  35.     padding-bottom: 1em;
  36.     clear: both;
  37. }
  38.  
  39. #search_box {
  40.     border: 1px solid #393;
  41.     -moz-border-radius: 0.5em;
  42.     -webkit-border-radius: 0.5em;
  43.     padding: 1em;
  44.     margin-bottom: 0.5em;
  45.     float: right;
  46. }
  47.  
  48. #listing {
  49.     width: 100%;
  50.     border-collapse: collapse;
  51. }
  52. #listing td {
  53.     padding: 0.25em;
  54. }
  55.  
  56. #listing td.thumbnail {
  57.     height: 60px;
  58.     width: 60px;
  59. }
  60.  
  61. #listing tr:nth-child(even) {
  62.  
  63.     background: #eee;
  64. }
  65.  
  66. #listing .button a{
  67.     display: inline-block;
  68.     width: 2.5em;
  69.     padding-left: 0em;
  70.     padding-right: 0em;
  71.     overflow: hidden;
  72.     text-align: center;
  73. }
  74.  
  75. #logo {
  76.     float: left;
  77. }
  78.  
  79. #spacer {
  80.     clear: both;
  81. }
  82.  
  83.  
  84.