popup.css 365 B

123456789101112131415161718192021222324252627
  1. body {
  2. font-family: sans-serif;
  3. padding: 8px 16px;
  4. background-color: #222;
  5. color: #ddd;
  6. margin: 0;
  7. width: 300px;
  8. }
  9. h1 {
  10. font-weight: 400;
  11. text-align: center;
  12. }
  13. button {
  14. padding: 12px;
  15. background-color: #ddd;
  16. border: none;
  17. box-shadow: none;
  18. cursor: pointer;
  19. border-radius: 3px;
  20. width: 100%;
  21. }
  22. button:hover, button:focus {
  23. background-color: #ccc;
  24. }