tool.css 538 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .tool-entrance {
  2. position: absolute;
  3. z-index: 99;
  4. top: 0;
  5. left: -30px;
  6. bottom: 0;
  7. margin: auto;
  8. display: inline-block;
  9. width: 30px;
  10. height: 85px;
  11. padding: 5px;
  12. background: #333;
  13. text-align: center;
  14. color: #fff;
  15. cursor: pointer;
  16. user-select: none;
  17. }
  18. .tool-main {
  19. position: absolute;
  20. z-index: 90;
  21. top: 0;
  22. width: 100%;
  23. height: 100%;
  24. background: #ccc;
  25. }
  26. .tool-input-group > input {
  27. width: 40%;
  28. }
  29. .tool-input-group > button {
  30. width: 50%;
  31. }
  32. .tool-btn {
  33. box-sizing: border-box;
  34. margin: 5px;
  35. }