base.css 878 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .tabs > div, .tabs > input { display: none; }
  2. .tabs label {
  3. padding: 5px;
  4. border: 1px solid #aaa;
  5. line-height: 28px;
  6. cursor: pointer;
  7. position: relative;
  8. bottom: 1px;
  9. background: #fff;
  10. }
  11. .tabs input[type="radio"]:checked + label { border-bottom: 2px solid #fff; }
  12. .tabs > input:nth-of-type(1):checked ~ div:nth-of-type(1),
  13. .tabs > input:nth-of-type(2):checked ~ div:nth-of-type(2) {
  14. display: block;
  15. padding: 5px;
  16. border:
  17. 1px solid #aaa;
  18. }
  19. .tree {
  20. height: 85vh;
  21. padding: 5px;
  22. border: 1px solid #aaa;
  23. line-height: 28px;
  24. cursor: pointer;
  25. position: relative;
  26. bottom: 1px;
  27. background: #fff;
  28. overflow:auto;
  29. }
  30. .infoTable {
  31. padding: 2px;
  32. border: 1px solid #aaa;
  33. line-height: 28px;
  34. cursor: pointer;
  35. position: relative;
  36. background: #fff;
  37. overflow:auto;
  38. bottom: 1px;
  39. text-align: left;
  40. }