Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. /*--------------------------------------------------------------
  2. ## Captions
  3. --------------------------------------------------------------*/
  4. .wp-caption {
  5. margin-bottom: 1.5em;
  6. max-width: 100%;
  7. }
  8.  
  9. .wp-caption img[class*="wp-image-"] {
  10. display: block;
  11. margin-left: auto;
  12. margin-right: auto;
  13. }
  14.  
  15. .wp-caption .wp-caption-text {
  16. margin: 0.8075em 0;
  17. }
  18.  
  19. .wp-caption-text {
  20. text-align: center;
  21. }
  22.  
  23. /*--------------------------------------------------------------
  24. # Accessibility
  25. --------------------------------------------------------------*/
  26. /* Text meant only for screen readers. */
  27. .screen-reader-text {
  28. clip: rect(1px, 1px, 1px, 1px);
  29. position: absolute !important;
  30. height: 1px;
  31. width: 1px;
  32. overflow: hidden;
  33. }
  34.  
  35. .screen-reader-text:focus {
  36. background-color: #f1f1f1;
  37. border-radius: 3px;
  38. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  39. clip: auto !important;
  40. color: #21759b;
  41. display: block;
  42. font-size: 14px;
  43. font-size: 0.875rem;
  44. font-weight: bold;
  45. height: auto;
  46. left: 5px;
  47. line-height: normal;
  48. padding: 15px 23px 14px;
  49. text-decoration: none;
  50. top: 5px;
  51. width: auto;
  52. z-index: 100000; /* Above WP toolbar. */
  53. }
  54.  
  55. /* Do not show the outline on the skip link target. */
  56. #content[tabindex="-1"]:focus {
  57. outline: 0;
  58. }
  59.  
  60. .sticky {
  61. display: block;
  62. }
  63.  
  64. .gallery-caption {
  65. display: block;
  66. }
  67.  
  68. .bypostauthor {
  69. display: block;
  70. }
  71.  
  72. /*--------------------------------------------------------------
  73. # Alignments
  74. --------------------------------------------------------------*/
  75. .alignleft {
  76. display: inline;
  77. float: left;
  78. margin-right: 1.5em;
  79. }
  80.  
  81. .alignright {
  82. display: inline;
  83. float: right;
  84. margin-left: 1.5em;
  85. }
  86.  
  87. .aligncenter {
  88. clear: both;
  89. display: block;
  90. margin-left: auto;
  91. margin-right: auto;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement