index.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. html,body{
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. background-color: #F6F9FA;
  7. }
  8. .container{
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .menuTreeList .selected , .menuTreeList .hover{
  13. color: red;
  14. }
  15. .imageSlider .selected span{
  16. color: red;
  17. }
  18. .menuTree , .imageSlider{
  19. width: 100%;
  20. }
  21. ul.menuTreeList{
  22. list-style-image:url("/web/jsp/shoudan/img/file.gif");
  23. margin-left: 5px;
  24. list-style-position: inside;
  25. height: 200px;
  26. overflow-y: auto;
  27. margin-top: 0;
  28. margin-bottom: 0;
  29. }
  30. .menuTreeList li{
  31. line-height: 20px;
  32. font-weight: bold;
  33. font-size: 20px!important;
  34. margin-top: 10px;
  35. cursor: pointer;
  36. }
  37. .menuTreeList span{
  38. padding-left: 5px;
  39. line-height: 20px;
  40. font-size: 14px;
  41. }
  42. .imageSlider{
  43. height: 100%;
  44. overflow-y: auto;
  45. margin-left: 10px;
  46. margin-right: auto;
  47. list-style: none;
  48. }
  49. .imageSliderItem{
  50. width: 100px;
  51. height: 100px;
  52. cursor: pointer;
  53. }
  54. /****图片预览主窗口****/
  55. .contentWindow{
  56. width: 100%;
  57. height: 100%;
  58. }
  59. .windowContainer{
  60. width: 100%;
  61. height: 100%;
  62. display: none;
  63. }
  64. .windowContainerBottom{
  65. margin-left: auto;
  66. margin-right: auto;
  67. text-align: center;
  68. }
  69. .windowContainerTop{
  70. text-align: center;
  71. width: 100%;
  72. height: 95%;
  73. }