Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.79 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3.  
  4. #ac-input { width: 300px; }
  5.  
  6. #photos {
  7.   border: 1px solid #cfcfcf;
  8.   list-style: none;
  9.   margin: 1.5em 0 0;
  10.   padding: 6px;
  11. }
  12.  
  13. #photos li {
  14.   display: inline-block;
  15.   list-style: none;
  16.  
  17.   /* fake inline-block for IE<8 */
  18.   zoom: 1;
  19.   *display: inline;
  20. }
  21.  
  22. #photos .empty { font-style: italic; }
  23.  
  24. #photos .photo {
  25.   margin: 5px;
  26.   text-align: center;
  27.   width: 100px;
  28. }
  29.  
  30. #photos .photo img {
  31.   border: 1px solid #000;
  32.   vertical-align: top;
  33. }
  34.  
  35. .result {
  36.   margin: 2px 0;
  37.   zoom: 1;
  38. }
  39.  
  40. .result:after {
  41.   clear: both;
  42.   content: '.';
  43.   display: block;
  44.   height: 0;
  45.   visibility: hidden;
  46. }
  47.  
  48. .result .photo {
  49.   height: 32px;
  50.   float: left;
  51.   margin-right: 6px;
  52.   width: 32px;
  53. }
  54.  
  55. .result .title { vertical-align: top; }
Add Comment
Please, Sign In to add comment