Advertisement
Guest User

Untitled

a guest
May 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.86 KB | None | 0 0
  1. @charset "utf-8";
  2. /*
  3. .__             .      .__    ._      . ,    __. ,    .  
  4. [__) _ ._.._ _ *|* _.  |  \ _ |, _.. .|-+-  (__ -+-  .| _
  5. |   (/,[  [ | )|||(_]  |__/(/,| (_](_|| |   .__) | \_||(/,
  6.                                                    ._|    
  7. */
  8.  
  9.  
  10. /** Reset **/
  11.  
  12. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}:focus{outline:0}body{line-height:1;color:black;background:white}ol,ul{list-style:none}table{border-collapse:separate;border-spacing:0}caption,th,td{text-align:left;font-weight:normal}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote,q{quotes:""""}
  13.  
  14. /** Default Classes **/
  15.  
  16. .left   {   float:left;     }
  17. .right  {   float:right;    }
  18. .clear  {   clear:both; display:block; overflow:auto; visibility:hidden; height:auto; width:auto; }
  19. .hide   {   display:none;   }
  20.  
  21. /** Default Styling **/
  22.  
  23. /** Default Styling Classes  **/
  24.  
  25. .bold {font-weight:600;}
  26. .italic {font-style:italic;}
  27.  
  28. .arial {font-family:Arial, Helvetica, sans-serif;}
  29. .tahoma {font-family:Tahoma, Geneva, sans-serif;}
  30. .geogria {font-family:Georgia, "Times New Roman", Times, serif;}
  31. .verdana {font-family:Verdana, Geneva, sans-serif;}
  32.  
  33. body{
  34.   background:#fff;
  35.   color:#000;
  36.   font:75%/1.5em Arial, Helvetica, "Liberation sans", "Bitstream Vera Sans", sans-serif;
  37.   position:relative;
  38. }
  39. /* Baseline and common looks - Sets a vertical rhythm and styles the different elements.
  40.  */
  41.  
  42. h1,h2,h3,h4,h5,h6{
  43.   font-weight:700;
  44.   padding:0;
  45. }
  46. h1{
  47.   font-size:2em;
  48.   margin:0 0 0.75em;
  49. }
  50. h2{
  51.   font-size:1.5em;
  52.   margin:0 0 1em;
  53. }
  54. h3{
  55.   font-size:1.1666em;
  56.   margin:0 0 1.286em;
  57. }
  58. h4{
  59.   font-size:1em;
  60.   margin:0 0 1.5em;
  61. }
  62. h5{
  63.   font-size:0.8333em;
  64.   margin:0 0 1.8em;
  65. }
  66. h6{
  67.   font-size:0.666em;
  68.   margin:0 0 2.25em;
  69. }
  70. img{
  71.   display:inline-block;
  72.   vertical-align:text-bottom;
  73. }
  74. ol{
  75.   list-style:outside decimal;
  76. }
  77. p{
  78.   font-weight:300;
  79.   margin:0 0 1.5em;
  80. }
  81. pre{
  82.   font-family:"Courier New", Courier, monospace, serif;
  83.   margin:0 0 1.5em;
  84. }
  85. sub{
  86.   top:0.4em;
  87.   font-size:0.85em;
  88.   line-height:1;
  89.   position:relative;
  90.   vertical-align:baseline;
  91. }
  92. sup{
  93.   font-size:0.85em;
  94.   line-height:1;
  95.   position:relative;
  96.   bottom:0.5em;
  97.   vertical-align:baseline;
  98. }
  99. strong,b{
  100.   font-weight:700;
  101. }
  102. ul{
  103.   list-style:outside disc;
  104. }
  105. ul,ol{
  106.   margin:0 0 1.5em 1.5em;
  107.   padding:0;
  108. }
  109. li ul,li ol{
  110.   padding:0;
  111.   margin:0 0 1.5em 1.5em;
  112. }
  113. table{
  114.   border-collapse:collapse;
  115.   border-spacing:0;
  116.   margin:0 0 1.5em;
  117.   padding:0;
  118. }
  119. caption{
  120.   font-style:italic;
  121.   text-align:left;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement