Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. padding: 0;
  4. margin: 0;
  5. }
  6.  
  7. html {
  8. font-size: 62.5%;
  9. }
  10.  
  11. body {
  12. font-size: 1.6em;
  13. margin-top: 20px;
  14. text-align: center;
  15. }
  16.  
  17. h2 {
  18. margin-bottom: 20px;
  19. }
  20.  
  21. input[type="color"] {
  22. margin-bottom: 10px;
  23. }
  24.  
  25. label {
  26. display: inline-block;
  27. margin-bottom: 10px;
  28. }
  29.  
  30. form input[type='submit'] {
  31. font-size: 1.8rem;
  32. background-color: Maroon;
  33. color: White;
  34. padding: 5px 10px;
  35. }
  36.  
  37. form input[type='submit']:hover {
  38. background-color: Black;
  39. cursor: pointer;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement