tool.css 787 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .tool-box {
  2. position: absolute;
  3. /* top: 0; */
  4. right: 0;
  5. padding: 5px 0;
  6. z-index: 100;
  7. }
  8. .tool-box span {
  9. cursor: pointer;
  10. margin-right: 15px;
  11. }
  12. .screen {
  13. position: fixed !important;
  14. width: 100%;
  15. z-index: 100;
  16. top: 0;
  17. left: 0;
  18. padding: 0 !important;
  19. margin: 0 !important;
  20. }
  21. .tool-select {
  22. width: 80px;
  23. position: absolute;
  24. right: 0px;
  25. display: none;
  26. }
  27. .tool-select li {
  28. border: 1px solid;
  29. text-align: center;
  30. background: grey;
  31. }
  32. .tool-select li:hover {
  33. background-color: #0b82ff !important;
  34. color: white;
  35. cursor: pointer;
  36. }
  37. .tool-bg {
  38. position: fixed;
  39. width: 100%;
  40. height: 100%;
  41. background-color: rgba(0, 0, 0,0.3);
  42. top: 0;
  43. text-align: center;
  44. z-index: 10000000;
  45. }