phppresentation.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. body {
  2. padding-top: 20px;
  3. padding-bottom: 20px;
  4. }
  5. .navbar {
  6. margin-bottom: 20px;
  7. }
  8. .passed {
  9. color: #339900;
  10. }
  11. .failed {
  12. color: #ff0000;
  13. }
  14. .tree {
  15. min-height:20px;
  16. padding:19px;
  17. margin-bottom:20px;
  18. background-color:#fbfbfb;
  19. -webkit-border-radius:4px;
  20. -moz-border-radius:4px;
  21. }
  22. .tree li {
  23. list-style-type:none;
  24. margin:0;
  25. padding:10px 5px 0 5px;
  26. position:relative
  27. }
  28. .tree li::before, .tree li::after {
  29. content:'';
  30. left:-20px;
  31. position:absolute;
  32. right:auto
  33. }
  34. .tree li::before {
  35. border-left:1px solid #999;
  36. bottom:50px;
  37. height:100%;
  38. top:0;
  39. width:1px
  40. }
  41. .tree li::after {
  42. border-top:1px solid #999;
  43. height:20px;
  44. top:30px;
  45. width:25px
  46. }
  47. .tree li span {
  48. -moz-border-radius:5px;
  49. -webkit-border-radius:5px;
  50. border:1px solid #999;
  51. border-radius:5px;
  52. display:inline-block;
  53. padding:3px 8px;
  54. text-decoration:none
  55. }
  56. .tree li.parent_li>span {
  57. cursor:pointer
  58. }
  59. .tree>ul>li::before, .tree>ul>li::after {
  60. border:0
  61. }
  62. .tree li:last-child::before {
  63. height:30px
  64. }
  65. .tree li.parent_li>span:hover, .tree li.parent_li>span:hover+ul li span {
  66. background:#eee;
  67. border:1px solid #94a0b4;
  68. color:#000
  69. }
  70. .tree .shape {
  71. cursor: pointer;
  72. }
  73. .infoBlk {
  74. display:none;
  75. }
  76. .pptTree {
  77. background-color:#fbfbfb;
  78. }
  79. .pptTree dd {
  80. margin-left: 20px;
  81. }
  82. .pptTree dd img {
  83. max-width: 50%;
  84. }