notify.css 585 B

123456789101112131415161718192021222324252627282930
  1. .pcd_notify {
  2. position: fixed;
  3. top: 3.6em;
  4. left: 40vw;
  5. min-width: 20em;
  6. max-width: 95%;
  7. text-align: center;
  8. background-color: rgba(128, 128, 128, 0.64);
  9. color: white;
  10. padding: 5px;
  11. margin-left: auto;
  12. margin-right: auto;
  13. border-radius: 8px;
  14. -webkit-transition-duration: 0.5s;
  15. transition-duration: 0.5;
  16. z-index: 2000;
  17. }
  18. .pcd_notify_bar {
  19. position: fixed;
  20. top: 6em;
  21. left: 0;
  22. width: 100%;
  23. text-align: left;
  24. background-color: rgba(255, 72, 0, 0.753);
  25. color: rgb(0, 0, 0);
  26. padding: 5px;
  27. -webkit-transition-duration: 0.5s;
  28. transition-duration: 0.5;
  29. z-index: 2000;
  30. }