hw-gs-player

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

reset-style.css (1737B)


      1 /*
      2 html5doctor.com Reset Stylesheet
      3 v1.6.1
      4 Last Updated: 2010-09-17
      5 Author: Richard Clark - http://richclarkdesign.com
      6 Twitter: @rich_clark
      7 */
      8 
      9 html,
     10 body,
     11 div,
     12 span,
     13 object,
     14 iframe,
     15 h1,
     16 h2,
     17 h3,
     18 h4,
     19 h5,
     20 h6,
     21 p,
     22 blockquote,
     23 pre,
     24 abbr,
     25 address,
     26 cite,
     27 code,
     28 del,
     29 dfn,
     30 em,
     31 img,
     32 ins,
     33 kbd,
     34 q,
     35 samp,
     36 small,
     37 strong,
     38 sub,
     39 sup,
     40 var,
     41 b,
     42 i,
     43 dl,
     44 dt,
     45 dd,
     46 ol,
     47 ul,
     48 li,
     49 fieldset,
     50 form,
     51 label,
     52 legend,
     53 table,
     54 caption,
     55 tbody,
     56 tfoot,
     57 thead,
     58 tr,
     59 th,
     60 td,
     61 article,
     62 aside,
     63 canvas,
     64 details,
     65 figcaption,
     66 figure,
     67 footer,
     68 header,
     69 hgroup,
     70 menu,
     71 nav,
     72 section,
     73 summary,
     74 time,
     75 mark,
     76 audio,
     77 video {
     78   margin: 0;
     79   padding: 0;
     80   border: 0;
     81   outline: 0;
     82   font-size: 100%;
     83   vertical-align: baseline;
     84   background: transparent;
     85 }
     86 
     87 body {
     88   line-height: 1.5;
     89 }
     90 
     91 article,
     92 aside,
     93 details,
     94 figcaption,
     95 figure,
     96 footer,
     97 header,
     98 hgroup,
     99 menu,
    100 nav,
    101 section {
    102   display: block;
    103 }
    104 
    105 nav ul {
    106   list-style: none;
    107 }
    108 
    109 blockquote,
    110 q {
    111   quotes: none;
    112 }
    113 
    114 blockquote:before,
    115 blockquote:after,
    116 q:before,
    117 q:after {
    118   content: '';
    119   content: none;
    120 }
    121 
    122 a {
    123   margin: 0;
    124   padding: 0;
    125   font-size: 100%;
    126   vertical-align: baseline;
    127   background: transparent;
    128 }
    129 
    130 /* change colours to suit your needs */
    131 ins {
    132   background-color: #ff9;
    133   color: #000;
    134   text-decoration: none;
    135 }
    136 
    137 /* change colours to suit your needs */
    138 mark {
    139   background-color: #ff9;
    140   color: #000;
    141   font-style: italic;
    142   font-weight: bold;
    143 }
    144 
    145 del {
    146   text-decoration: line-through;
    147 }
    148 
    149 abbr[title],
    150 dfn[title] {
    151   border-bottom: 1px dotted;
    152   cursor: help;
    153 }
    154 
    155 table {
    156   border-collapse: collapse;
    157   border-spacing: 0;
    158 }
    159 
    160 /* change border colour to suit your needs */
    161 hr {
    162   display: block;
    163   height: 1px;
    164   border: 0;
    165   border-top: 1px solid #cccccc;
    166   margin: 1em 0;
    167   padding: 0;
    168 }
    169 
    170 input,
    171 select {
    172   vertical-align: middle;
    173 }