Advertisement
Guest User

X

a guest
Jun 15th, 2021
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /* The alert message box */
  2. .alert {
  3. padding: 20px;
  4. background-color: #f44336; /* Red */
  5. color: white;
  6. margin-bottom: 15px;
  7. }
  8.  
  9. /* The close button */
  10. .closebtn {
  11. margin-left: 15px;
  12. color: white;
  13. font-weight: bold;
  14. float: right;
  15. font-size: 22px;
  16. line-height: 20px;
  17. cursor: pointer;
  18. transition: 0.3s;
  19. }
  20. /* When moving the mouse over the close button */
  21. .closebtn:hover {
  22. color: black;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement