api.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. ol,ul{
  18. list-style:none;
  19. }
  20. html,body{
  21. height: 100%;
  22. width: 100%;
  23. }
  24. #wrap{
  25. height: 100%;
  26. display: -webkit-box;
  27. -webkit-box-orient: vertical;
  28. -webkit-flex-flow: column;
  29. }
  30. #header{
  31. display:-webkit-box;
  32. background-color: #078f5f;
  33. color: #fff;
  34. width: 100%;
  35. }
  36. #header h1{
  37. text-align: center;
  38. font-size: 15px;
  39. height: 44px;
  40. -webkit-box-flex:1;
  41. line-height: 44px;
  42. margin: 0em;
  43. color: #fff;
  44. }
  45. #main{
  46. -webkit-box-flex: 1;
  47. -webkit-flex: 1;
  48. }
  49. #footer{
  50. height: 30px;
  51. line-height: 30px;
  52. background-color: #078f5f;
  53. width: 100%;
  54. text-align: center;
  55. }
  56. #footer h5{
  57. color: white;
  58. }