Advertisement
Guest User

Untitled

a guest
Jun 25th, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.05 KB | None | 0 0
  1. /* =Images
  2. -------------------------------------------------------------- */
  3.  
  4. /*
  5. Resize images to fit the main content area.
  6. - Applies only to images uploaded via WordPress by targeting size-* classes.
  7. - Other images will be left alone. Use "size-auto" class to apply to other images.
  8. */
  9. img.size-auto,
  10. img.size-full,
  11. img.size-large,
  12. img.size-medium,
  13. .attachment img {
  14.     max-width: 100%; /* When images are too wide for containing element, force them to fit. */
  15.     height: auto; /* Override height to match resized width for correct aspect ratio. */
  16. }
  17. .alignleft,
  18. img.alignleft {
  19.     display: inline;
  20.     float: left;
  21.     margin-right: 24px;
  22.     margin-top: 4px;
  23. }
  24. .alignright,
  25. img.alignright {
  26.     display: inline;
  27.     float: right;
  28.     margin-left: 24px;
  29.     margin-top: 4px;
  30. }
  31. .aligncenter,
  32. img.aligncenter {
  33.     clear: both;
  34.     display: block;
  35.     margin-left: auto;
  36.     margin-right: auto;
  37. }
  38. img.alignleft,
  39. img.alignright,
  40. img.aligncenter {
  41.     margin-bottom: 12px;
  42. }
  43. .wp-caption {
  44.     background: #f1f1f1;
  45.     line-height: 18px;
  46.     margin-bottom: 20px;
  47.     max-width: 632px !important; /* prevent too-wide images from breaking layout */
  48.     padding: 4px;
  49.     text-align: center;
  50. }
  51. .wp-caption img {
  52.     margin: 5px 5px 0;
  53. }
  54. .wp-caption p.wp-caption-text {
  55.     color: #888;
  56.     font-size: 12px;
  57.     margin: 5px;
  58. }
  59. .wp-smiley {
  60.     margin: 0;
  61. }
  62. .gallery {
  63.     margin: 0 auto 18px;
  64. }
  65. .gallery .gallery-item {
  66.     float: left;
  67.     margin-top: 0;
  68.     text-align: center;
  69.     width: 33%;
  70. }
  71. .gallery-columns-2 .gallery-item {
  72.     width: 50%;
  73. }
  74. .gallery-columns-4 .gallery-item {
  75.     width: 25%;
  76. }
  77. .gallery img {
  78.     border: 2px solid #cfcfcf;
  79. }
  80. .gallery-columns-2 .attachment-medium {
  81.     max-width: 92%;
  82.     height: auto;
  83. }
  84. .gallery-columns-4 .attachment-thumbnail {
  85.     max-width: 84%;
  86.     height: auto;
  87. }
  88. .gallery .gallery-caption {
  89.     color: #888;
  90.     font-size: 12px;
  91.     margin: 0 0 12px;
  92. }
  93. .gallery dl {
  94.     margin: 0;
  95. }
  96. .gallery img {
  97.     border: 10px solid #f1f1f1;
  98. }
  99. .gallery br+br {
  100.     display: none;
  101. }
  102. #content .attachment img {/* single attachment images should be centered */
  103.     display: block;
  104.     margin: 0 auto;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement