main.scss 1000 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. *{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. .table_border{
  6. border: solid 1px #B4B4B4;
  7. border-collapse: collapse;
  8. }
  9. .table_border tr th{
  10. padding-left:4px;
  11. height:27px;
  12. border: solid 1px #B4B4B4;
  13. }
  14. .table_border tr td{
  15. height:25px;
  16. padding:4px;
  17. border: solid 1px #B4B4B4;
  18. }
  19. .goto_box{
  20. position: fixed;
  21. right:-144px;
  22. bottom: 10px;
  23. width: 150px;
  24. background: #fff;
  25. }
  26. .leftNav{
  27. box-sizing: border-box;
  28. padding: 10px;
  29. position: fixed;
  30. height: 100%;
  31. width: 250px;
  32. overflow: auto;
  33. background-color: #f0f0f0;
  34. padding-bottom: 20px;
  35. ul{
  36. li{
  37. list-style: none;
  38. margin-top:1px;
  39. padding: 5px;
  40. border-bottom: #ccc dashed 1px;
  41. a{
  42. text-decoration: none;
  43. font-size: 14px;
  44. }
  45. }
  46. }
  47. }
  48. .rightBox{
  49. margin-left: 270px;
  50. }