Blame view

controllets/data-sevc-controllet/static/css/reset.css 1.37 KB
325c348a   Luigi Serra   Cross browser bug...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  ::content html {

      color: #000;

      background: #FFF;

  }

  

  ::content body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,

  h4, h5, h6, pre, code, form, fieldset, legend,

  input, button, textarea, p, blockquote, th, td {

      margin: 0;

      padding: 0;

  }

  

  ::content table {

      border-collapse: collapse;

      border-spacing: 0;

  }

  

  ::content fieldset, img {

      border: 0;

  }

  

  ::content address, caption, cite, code, dfn, em, strong,

  th, var, optgroup {

      font-style: inherit;

      font-weight: inherit;

  }

  

  ::content del, ins {

      text-decoration: none;

  }

  

  ::content li {

      list-style: none;

  }

  

  ::content caption, th {

      text-align: left;

  }

  

  ::content h1, h2, h3, h4, h5, h6 {

      font-size: 100%;

      font-weight: normal;

  }

  

  ::content q:before, q:after {

      content: '';

  }

  

  ::content abbr, acronym {

      border: 0;

      font-variant: normal;

  }

  

  ::content sup {

      vertical-align: baseline;

  }

  

  ::content sub {

      vertical-align: baseline;

  }

  

  /*because legend doesn't inherit in IE */

  ::content legend {

      color: #000;

  }

  

  ::content input, button, textarea, select, optgroup, option {

      font-family: inherit;

      font-size: inherit;

      font-style: inherit;

      font-weight: inherit;

  }

  

  /*@purpose To enable resizing for IE */

  /*@branch For IE6-Win, IE7-Win */

  ::content input, button, textarea, select {

      *font-size: 100%;

  }