Advertisement
arsh999cg

CSS Reset for Oxygen

Oct 24th, 2023
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. img, .oxy-stock-content-styles img, .ct-inner-content img {
  2.     max-width: 100%;
  3.     height: auto;
  4.     vertical-align: top;
  5. }
  6.  
  7. img.alignright {
  8.     float: right;
  9.     margin: 0 0 2em 2em;
  10. }
  11.  
  12. img.alignleft {
  13.     float: left;
  14.     margin: 0 2em 2em 0;
  15. }
  16.  
  17. img.aligncenter {
  18.     display: block;
  19.     margin-left: auto;
  20.     margin-right: auto;
  21. }
  22.  
  23. .alignright {
  24.     float: right;
  25. }
  26.  
  27. .alignleft {
  28.     float: left;
  29. }
  30.  
  31. .aligncenter {
  32.     display: block;
  33.     margin-left: auto;
  34.     margin-right: auto;
  35. }
  36.  
  37. @media only screen and (max-width: 600px) {
  38.     img.alignleft,
  39.     .alignleft,
  40.     img.alignright,
  41.     .alignright {
  42.         float: none;
  43.         margin-right: 0;
  44.     }
  45. }
  46.  
  47. input,
  48. button,
  49. textarea,
  50. select {
  51.     font: inherit;
  52. }
  53.  
  54. @media only screen and (max-width:767px) {
  55.     .oxy-stock-content-styles, p, a {
  56.         word-wrap: break-word; /* Internet Explorer 5.5+ */
  57.         word-break: break-word;
  58.         /* white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  59.         /* white-space: -o-pre-wrap; /* Opera 7 */
  60.         /* white-space: pre-wrap; /* css-3 */
  61.            -moz-hyphens: auto;
  62.         -webkit-hyphens: auto;
  63.                 hyphens: auto;
  64.     }
  65.     iframe {
  66.         width: 100%;
  67.         height: auto;
  68.     }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement