Advertisement
alamin_89

Wordpress core css

Dec 18th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* =WordPress Core
  2. -------------------------------------------------------------- */
  3. .alignnone {
  4.     margin: 5px 20px 20px 0;
  5. }
  6.  
  7. .aligncenter,
  8. div.aligncenter {
  9.     display: block;
  10.     margin: 5px auto 5px auto;
  11. }
  12.  
  13. .alignright {
  14.     float:right;
  15.     margin: 5px 0 20px 20px;
  16. }
  17.  
  18. .alignleft {
  19.     float: left;
  20.     margin: 5px 20px 20px 0;
  21. }
  22.  
  23. a img.alignright {
  24.     float: right;
  25.     margin: 5px 0 20px 20px;
  26. }
  27.  
  28. a img.alignnone {
  29.     margin: 5px 20px 20px 0;
  30. }
  31.  
  32. a img.alignleft {
  33.     float: left;
  34.     margin: 5px 20px 20px 0;
  35. }
  36.  
  37. a img.aligncenter {
  38.     display: block;
  39.     margin-left: auto;
  40.     margin-right: auto
  41. }
  42.  
  43. .wp-caption {
  44.     background: #fff;
  45.     border: 1px solid #f0f0f0;
  46.     max-width: 96%; /* Image does not overflow the content area */
  47.     padding: 5px 3px 10px;
  48.     text-align: center;
  49. }
  50.  
  51. .wp-caption.alignnone {
  52.     margin: 5px 20px 20px 0;
  53. }
  54.  
  55. .wp-caption.alignleft {
  56.     margin: 5px 20px 20px 0;
  57. }
  58.  
  59. .wp-caption.alignright {
  60.     margin: 5px 0 20px 20px;
  61. }
  62.  
  63. .wp-caption img {
  64.     border: 0 none;
  65.     height: auto;
  66.     margin: 0;
  67.     max-width: 98.5%;
  68.     padding: 0;
  69.     width: auto;
  70. }
  71.  
  72. .wp-caption p.wp-caption-text {
  73.     font-size: 11px;
  74.     line-height: 17px;
  75.     margin: 0;
  76.     padding: 0 4px 5px;
  77. }
  78.  
  79. /* Text meant only for screen readers. */
  80. .screen-reader-text {
  81.     clip: rect(1px, 1px, 1px, 1px);
  82.     position: absolute !important;
  83.     height: 1px;
  84.     width: 1px;
  85.     overflow: hidden;
  86. }
  87.  
  88. .screen-reader-text:focus {
  89.     background-color: #f1f1f1;
  90.     border-radius: 3px;
  91.     box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  92.     clip: auto !important;
  93.     color: #21759b;
  94.     display: block;
  95.     font-size: 14px;
  96.     font-size: 0.875rem;
  97.     font-weight: bold;
  98.     height: auto;
  99.     left: 5px;
  100.     line-height: normal;
  101.     padding: 15px 23px 14px;
  102.     text-decoration: none;
  103.     top: 5px;
  104.     width: auto;
  105.     z-index: 100000; /* Above WP toolbar. */
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement