api.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. html{
  2. font-family: sans-serif;
  3. }
  4. html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p{
  5. margin:0;
  6. border:0;
  7. padding:0;
  8. font-style:normal;
  9. }
  10. html,body {
  11. -webkit-touch-callout:none;
  12. -webkit-text-size-adjust:none;
  13. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  14. /* -webkit-user-select:none; */
  15. background-color: #fff;
  16. }
  17. nav,article,aside,details,main,header,footer,section,fieldset,figcaption,figure{
  18. display: block;
  19. }
  20. img,a,button,em,del,strong,var,label,cite,small,time,mark,code,textarea{
  21. display:inline-block;
  22. }
  23. header,section,footer {
  24. position:relative;
  25. }
  26. ol,ul{
  27. list-style:none;
  28. }
  29. input,button,textarea {
  30. border:0;
  31. margin:0;
  32. padding:0;
  33. font-size:1em;
  34. line-height:1em;
  35. /*-webkit-appearance:none;*/
  36. background-color:rgba(0, 0, 0, 0);
  37. }
  38. span{
  39. display:inline-block;
  40. }
  41. a:active, a:hover {
  42. outline: 0;
  43. }
  44. a, a:visited{
  45. text-decoration:none;
  46. }
  47. label, .wordWrap{
  48. word-wrap: break-word;
  49. word-break: break-all;
  50. }
  51. table {
  52. border-collapse: collapse;
  53. border-spacing: 0;
  54. }
  55. td,th {
  56. padding: 0;
  57. }
  58. .clearfix:after{
  59. content: ' ';
  60. display: block;
  61. clear: both;
  62. visibility:hidden;
  63. line-height: 0;
  64. height:0;
  65. }