Advertisement
Guest User

Untitled

a guest
Nov 10th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.66 KB | None | 0 0
  1.  
  2. table {border-spacing: 2;}
  3.  
  4. .AlbumBox {
  5.      /* display: inline-block; */ /* This floats it in the center... you will have to comment out the below "float:left" if using this*/
  6.     border: 1px solid black; /* Table border */
  7.     float: left; /* So the tables are side by side instead of one under the other*/
  8.     margin: 5px; /* If this is not there the tables "stick" to each other with no spacing inbetween */
  9. }
  10.  
  11.  
  12.  
  13. .wrapper{
  14. background: #FFF;
  15. width: 100%;
  16. height: 100%;
  17. margin: 0 auto;
  18. color: #000;
  19. text-align: center;
  20. }
  21.  
  22.  
  23.  
  24.  
  25. .rating {
  26.     cursor: pointer;
  27.     margin:0 auto; //added margin
  28.     width:10%; //width mentioned
  29.     clear: both;
  30.     display: block;
  31.     background:#fff;
  32. }
  33.  
  34.  
  35.  
  36. .pictureBoxWrapper1 {
  37.     width: 225px;
  38.     /* background: silver; */
  39.     margin: 0 auto;
  40.     padding:7px;
  41.     float:left;
  42.     border:dotted;
  43.     margin-right:10px;
  44.    
  45. }
  46.  
  47. .img1 {
  48.     width:200px;
  49.     height:200px;
  50.     margin-left: auto;
  51.     margin-right: auto;
  52.  
  53.  
  54.     border:dotted 2px #000000;
  55.     border-top-left-radius:40px;
  56.     border-top-right-radius:40px;
  57.     border-bottom-left-radius:40px;
  58.     border-bottom-right-radius:40px;
  59.    
  60.     box-shadow: 3px 5px 5px #000000;
  61.     margin-bottom:10px;
  62. }
  63.  
  64. .img1_1 {
  65.     width:155px;
  66.     height:155px;
  67.     margin-left: auto;
  68.     margin-right: auto;
  69.  
  70.     margin-bottom:10px;
  71.    
  72. }
  73.  
  74. .img2 {
  75.     width:206px;
  76.     height:206px;
  77.     margin-left: auto;
  78.     margin-right: auto;
  79.    
  80.     border:dotted 4px #000000;
  81.     border-top-left-radius:42px;
  82.     border-top-right-radius:0px;
  83.     border-bottom-left-radius:0px;
  84.     border-bottom-right-radius:43px;
  85.    
  86.    
  87.     box-shadow:10px 10px 5px #000000;
  88. }
  89.  
  90. .img2.bg1 {
  91. background:url(Ro206x206.jpg)
  92.  
  93. }
  94.  
  95. .topIcon1 {
  96.     position:relative;
  97.     width:45px;
  98.     left: 155px;
  99.     top: -10px;
  100.     /* white-space: nowrap; Disables wrapping of the text*/
  101.     display:none;
  102. /*  z-index:-1; */
  103.    
  104. }
  105.  
  106. .rating1 {
  107.     width:200px;
  108.     margin-left: auto;
  109.     margin-right: auto;
  110.     text-align:center;
  111.     /*
  112.     background:yellow;
  113.     color:white;*/
  114. }
  115.  
  116. .imgName1 {
  117.     /*
  118.     background:black;
  119.     color:white;*/
  120.     padding:3px;
  121.     margin-bottom:20px;
  122.     ;
  123. }
  124.  
  125. .numbers1 {
  126.     width:48px;
  127.     float:left;
  128.     text-align:center;
  129.     /* background:#3CF; */
  130. }
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137. #original_items, #cloned_items {
  138.     list-style: none;
  139. }
  140.  
  141. #original_items li {
  142.     float: left;
  143.     position: relative;
  144.     z-index: 5;
  145. }
  146.  
  147.  
  148. #cloned_items li {
  149.     position: absolute;
  150.     z-index: 1;
  151. }
  152.  
  153.  
  154.  
  155. #original_items_pics, #cloned_items2 {
  156.     list-style: none;
  157. }
  158.  
  159.  
  160. #original_items_pics li {
  161.     float: left;
  162.     position: relative;
  163.     z-index: 5;
  164. }
  165.  
  166. #cloned_items2 li {
  167.     position: absolute;
  168.     z-index: 1;
  169. }
  170.  
  171. ul li {
  172.     margin: 3px 3px 3px 0;
  173.     padding: 1px;
  174. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement