Blame view

resource/public/reset.css 463 Bytes
c2bb199a   Andy   add tools doc
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
  body{
      display: none;
      /*opacity: 0;*/
  }
  @media (max-width: 800px) {
      .top-nav{
          display: none;
      }
  }
  body,ul,li{
      list-style:none;
  }
  button{
      outline:none;
  }
  .clearfix:after{
      display:block;
      clear:both;
      content:"";
      visibility:hidden;
      height:0
  }
  .clearfix{
      zoom:1;
  }
  a:link{
      text-decoration:none;
  }
  a:visited{
      text-decoration:none;
  }
  a:hover{
      text-decoration:none;
  }
  a:active{
      text-decoration:none;
  }