Guest User

Untitled

a guest
Apr 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.78 KB | None | 0 0
  1. /* Global styles */
  2.  
  3. #store #notice {
  4.         color: #000;
  5.         border: 2px solid red;
  6.         padding: 1em;
  7.         margin-bottom: 2em;
  8.         background-color: #f0f0f0;
  9.         font: bold smaller sans-serif;
  10. }
  11.  
  12.  
  13. #store h1 {
  14.         font:  150% sans-serif;
  15.         color: #226
  16.         border-bottom: 3px dotted #77d;
  17. }
  18.  
  19. /* Styles for products/index */
  20.  
  21. #product_list table {
  22.         border-collapse: collapse;
  23. }
  24.  
  25. #product_list table tr td {
  26.         padding: 5px;
  27.         vertical-align: top;
  28. }
  29.  
  30. #product_list .list_image {
  31.   width:        60px;
  32.   height:       70px;
  33. }
  34.  
  35. #product_list .list_description {
  36.   width:        60%;
  37. }
  38.  
  39. #product_list .list_description dl {
  40.         margin: 0;
  41. }
  42.  
  43. #product_list .list_description dt {
  44.     color:        #244;
  45.     font-weight:  bold;
  46.     font-size:    larger;
  47. }
  48.  
  49. #product_list .list_description dd {
  50.         margin: 0;
  51. }
  52.  
  53. #product_list .list_actions {
  54.   font-size:    x-small;
  55.   text-align:   right;
  56.   padding-left: 1em;
  57. }
  58.  
  59. #product_list .list_line_even {
  60.   background:   #e0f8f8;
  61. }
  62.  
  63. #product_list .list_line_odd {
  64.   background:   #f8b0f8;
  65. }
  66.  
  67. /* An entry in the store catalog */
  68.  
  69. #store  .entry {
  70.   overflow: auto;
  71.   margin-top: 1em;
  72.   border-bottom: 1px dotted #77d;
  73. }
  74.  
  75. #store  .title {
  76.   font-size: 120%;
  77.   font-family: sans-serif;
  78. }
  79.  
  80. #store .entry img {
  81.   width: 80px;
  82.   margin-right: 5px;
  83.   margin-bottom: 5px;
  84.   float: left;
  85. }
  86.  
  87.  
  88. #store .entry h3 {
  89.  margin-top: 0;
  90.  margin-bottom: 2px;
  91.  color: #227;
  92. }
  93.  
  94. #store .entry p {
  95.  margin-top: 0.5em;
  96.  margin-bottom: 0.8em;
  97. }
  98.  
  99. #store .entry .price_line {
  100.  clear: both;
  101.  margin-bottom: 0.5em;
  102. }
  103.  
  104. #store .entry .add_to_cart {
  105.   position: relative;
  106. }
  107.  
  108. #store .entry  .price {
  109.   color: #44a;
  110.   font-weight: bold;
  111.   margin-right: 2em;
  112. }
Add Comment
Please, Sign In to add comment