style.css 604 B

1234567891011121314151617181920212223242526272829303132333435
  1. body {
  2. margin: 0;
  3. }
  4. .context_menu{
  5. position: absolute;
  6. background-color: white;
  7. min-width: 100px;
  8. text-align: center;
  9. user-select: none;
  10. cursor: pointer;
  11. }
  12. .context_menu .context_item{
  13. padding-top: 5px;
  14. padding-bottom: 5px;
  15. font-weight: 500;
  16. font-size: 14px;
  17. background-color: white;
  18. }
  19. .context_menu .context_item:hover{
  20. background-color: lightgray;
  21. }
  22. .info_box{
  23. padding: 5px;
  24. position: absolute;
  25. background-color: white;
  26. border-radius: 5px;
  27. min-width: 80px;
  28. text-align: center;
  29. user-select: none;
  30. cursor: pointer;
  31. }