Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. /* Global Defaults */
  2.  html, body {
  3.  margin: 0px;
  4.  padding: 0px;
  5.  border: 0px;
  6.  }
  7.  
  8.  body {
  9.     font: 1em/1.25 Arial, Helvetica, sans-serif;
  10.     background-color: #F0F0F0;
  11.     background-image: url(bg-texture.png);
  12.  }
  13.  
  14.  /* Headlines */
  15.  h1, h2, h3, h4, h5, h6 {
  16.  margin: 0;
  17.  padding: 0;
  18.  font-weight: normal;
  19.  font-family: Arial, Helvetica, sans-serif;
  20.  }
  21.  
  22.  /* Text Styles */
  23.  p, th, td, li, dd, dt, ul, ol, blockquote, q, acronym, abbr, a, input, select, textarea {
  24.     margin: 0;
  25.     padding: 0;
  26.     font: normal normal normal 1em/1.25 Arial, Helvetica, sans-serif;
  27.     font-family: Arial, Helvetica, sans-serif;
  28.     text-align: left;
  29.  }
  30.  
  31.  stats {
  32.  margin: 0;
  33.  padding: 0;
  34.  font: normal normal normal 1em/1.25 Arial, Helvetica, sans-serif;
  35.  color:#FFF
  36.  }
  37.  
  38.  blockquote {
  39.  margin: 1.25em;
  40.  padding: 1.25em
  41.  }
  42.  q {
  43.  font-style: italic;
  44.  }
  45.  acronym, abbr {
  46.  cursor: help;
  47.  border-bottom: 1px dashed;
  48.  }
  49.  small {
  50.  font-size:.85em;
  51.  }
  52.  big {
  53.  font-size:1.2em;
  54.  }
  55.  
  56.  /* Links and Images */
  57.  a, a:link, a:visited, a:active, a:hover {
  58.  text-decoration: underline;
  59.  }
  60.  img {
  61.     border: none;
  62.     text-align: right;
  63.  }
  64.  
  65.  /* Tables */
  66.  table {
  67.  margin: 0;
  68.  padding: 0;
  69.  border: none;
  70.  }
  71.  
  72.  /* Forms */
  73.  form {
  74.  margin: 0;
  75.  padding: 0;
  76.  display: inline;
  77.  }
  78.  label {
  79.  cursor: pointer;
  80.  }
  81.  
  82.  /* Common Classes */
  83.  .clear { clear: both; }
  84.  .floatLeft { float: left; }
  85.  .floatRight { float: right; }
  86.  .textLeft { text-align: left; }
  87.  .textRight { text-align: right; }
  88.  .textCenter { text-align: center; }
  89.  .textJustify { text-align: justify; }
  90.  .blockCenter { display: block; margin-left: auto; margin-right: auto; } /* remember to set width */
  91.  .bold { font-weight: bold; }
  92.  .italic { font-style: italic; }
  93.  .underline { text-decoration: underline; }
  94.  .noindent { margin-left: 0; padding-left: 0; }
  95.  .nomargin { margin: 0; }
  96.  .nopadding { padding: 0; }
  97.  .nobullet { list-style: none; list-style-image: none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement