fe-opt.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. body {
  2. font-family:"MS Sans Serif";
  3. font-size:14px;
  4. }
  5. .fe-opt-header {
  6. height:120px;
  7. width:100%;
  8. position:fixed;
  9. top:0;
  10. left:0;
  11. }
  12. .fe-opt-header .top{
  13. padding:10px;
  14. }
  15. .fe-opt-header .top img{
  16. width:60px;
  17. }
  18. .fe-opt-header .top .text{
  19. font-size:20pt;
  20. position:absolute;
  21. top:30px;
  22. left:80px;
  23. }
  24. .fe-opt-header .top .copy-right{
  25. font-size:12px;
  26. position:absolute;
  27. bottom:35px;
  28. right:10px;
  29. color:#77C;
  30. }
  31. .fe-opt-header .bar{
  32. height:30px;
  33. width:100%;
  34. position:absolute;
  35. bottom:0;
  36. left:0;
  37. border-top:1px solid #78b;
  38. background:#def;
  39. clear:both;
  40. }
  41. .fe-opt-header .bar:after {
  42. content:"\20";
  43. }
  44. .fe-opt-header .bar .text{
  45. float:left;
  46. padding:5px;
  47. }
  48. .fe-opt-header .bar .btn{
  49. float:right;
  50. margin:5px 10px;
  51. font-weight:bold;
  52. color:#00b;
  53. cursor:pointer;
  54. }
  55. .fe-opt-header .bar .btn.close {
  56. margin-left:0;
  57. margin-right:20px;
  58. }
  59. .fe-opt-header .bar .btn:hover {
  60. color:#b00;
  61. }
  62. .fe-opt-content {
  63. position:absolute;
  64. top:120px;
  65. left:0;
  66. bottom:0;
  67. right:0;
  68. }
  69. .fe-opt-content .left{
  70. position:absolute;
  71. top:0;
  72. left:0;
  73. bottom:0;
  74. width:200px;
  75. border-right:5px solid #def;
  76. }
  77. .fe-opt-content .left ul{
  78. margin:0;
  79. padding:5px;
  80. }
  81. .fe-opt-content .left li{
  82. padding:6px 0 6px 20px;
  83. cursor:default;
  84. margin:4px 0;
  85. list-style:none;
  86. }
  87. .fe-opt-content .left li:hover{
  88. background:#eee;
  89. color:#b00;
  90. }
  91. .fe-opt-content .left li.selected{
  92. background:#eee;
  93. color:#b00;
  94. }
  95. .fe-opt-content .right{
  96. position:absolute;
  97. left:210px;
  98. }
  99. .fe-opt-content .right .title{
  100. margin:20px 0 10px;
  101. color:#48b;
  102. font-weight:bold;
  103. }
  104. .fe-opt-content .right ul{
  105. margin:0px;
  106. padding:5px;
  107. }
  108. .fe-opt-content .right ul li{
  109. margin:0 0 0 20px;
  110. padding:5px;
  111. }
  112. .fe-opt-content .right ul.no-list-style li{
  113. margin:0;
  114. list-style:none;
  115. }
  116. .fe-opt-content .right ul li:hover{
  117. background:#f8f8f0;
  118. }
  119. .fe-hide {
  120. display:none;
  121. }
  122. .fe-opt-footer {
  123. }