index3.css 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #tool{
  2. width:80px;
  3. position:fixed;
  4. top:30px;
  5. right:20px;
  6. border:1px solid #c6c6c6;
  7. background:#fff;
  8. z-index:700
  9. }
  10. #tool .tool{
  11. width:60px;
  12. height:50px;
  13. text-align:center;
  14. padding:5px 0;
  15. margin:0 10px;
  16. cursor:pointer;
  17. border-bottom:1px solid #c6c6c6
  18. }
  19. #tool .tool:last-child{
  20. border:0;
  21. }
  22. #first1,
  23. #first2,
  24. #second1,
  25. #second2,
  26. #second3,
  27. #second4,
  28. #third1,
  29. #third2{
  30. margin:5px 0px
  31. }
  32. .deskpart{
  33. height:200px;
  34. border:1px solid #c6c6c6;
  35. }
  36. .edit{
  37. position:relative;
  38. }
  39. .edit .editpart {
  40. display:block
  41. }
  42. .editpart{
  43. display:none;
  44. position:absolute;
  45. left:6.5px;
  46. top:1px;
  47. right:6.5px;
  48. bottom:1px;
  49. z-index:600;
  50. cursor:pointer;
  51. background:#f0eeee;
  52. opacity:0.8;
  53. }
  54. .editpart i{
  55. position:absolute;
  56. left:50%;
  57. top:50%;
  58. transform:translate(-50%,-50%)
  59. }