style.css 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @CHARSET "UTF-8";
  2. html{
  3. overflow: hidden;
  4. height: 100%;
  5. margin:0px;
  6. padding:0px;
  7. }
  8. body {
  9. margin:0px;
  10. padding:0px;
  11. height: 100%;
  12. font-family: "Microsoft YaHei","微软雅黑","SimSun","宋体";
  13. font-size:14px;
  14. -webkit-overflow-scrolling: touch;
  15. /*background-color: #F1F1F1;*/
  16. }
  17. /*
  18. .table-tr-selected {
  19. background-color: #FFFFDD;
  20. }*/
  21. select.script::-ms-expand { display: none; }
  22. ::-ms-clear, ::-ms-reveal{display: none;}
  23. @media print {
  24. @page:right{
  25. @bottom-left {
  26. margin: 10pt 0 30pt 0;
  27. border-top: .25pt solid #666;
  28. content: "Our Cats";
  29. font-size: 9pt;
  30. color: #333;
  31. }
  32. @bottom-right {
  33. margin: 10pt 0 30pt 0;
  34. border-top: .25pt solid #666;
  35. content: counter(page);
  36. font-size: 9pt;
  37. }
  38. @top-right {
  39. content: string(doctitle);
  40. margin: 30pt 0 10pt 0;
  41. font-size: 9pt;
  42. color: #333;
  43. }
  44. }
  45. }