overlay.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. Overlay
  3. */
  4. overlay {
  5. position: absolute;
  6. z-index: 500;
  7. top: 40px;
  8. bottom: 0;
  9. left: 0;
  10. right: 0;
  11. display: none;
  12. background-color: rgba(0,0,0,0.75);
  13. }
  14. /*
  15. Popup Message
  16. */
  17. #popup-message {
  18. position: absolute;
  19. z-index: 999;
  20. top: -60px;
  21. right: 32px;
  22. display: block;
  23. width: 280px;
  24. min-height: 40px;
  25. text-align: center;
  26. font-size: 10pt;
  27. font-weight: 400;
  28. color: rgba(255,255,255,0.82);
  29. background-color: rgb(48,48,48);
  30. box-shadow: 0px 3px 8px rgba(0,0,0,0.5);
  31. padding: 10px;
  32. }
  33. /*
  34. Status Window
  35. */
  36. #status {
  37. display: block;
  38. width: 480px;
  39. position: absolute;
  40. top: 50%;
  41. left: 50%;
  42. transform: translate(-50%, -50%);
  43. z-index: 1000;
  44. padding: 16px 32px;
  45. font-size: 10pt;
  46. font-weight: 400;
  47. text-align: center;
  48. color: rgb(192,192,192);
  49. }
  50. #hover {
  51. display: block;
  52. min-width: 160px;
  53. max-width: 500px;
  54. padding: 3px 5px;
  55. font-size: 9pt;
  56. font-weight: 600;
  57. background-color: rgb(64,64,64);
  58. color: rgb(224,224,224);
  59. box-shadow: rgba(0,0,0,0.5);
  60. border-radius: 8px;
  61. opacity: 0;
  62. position: absolute;
  63. z-index: 2000;
  64. left: 0;
  65. }