Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 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. html,
  12. input {
  13. font-family: "Source Code Pro", monospace;
  14. }
  15.  
  16. input[type=submit] {
  17. -webkit-appearance: button;
  18. -moz-appearance: button;
  19. -o-appearance: button;
  20. -ms-appearance: button;
  21. appearance: button;
  22. }
  23.  
  24. body {
  25. font-size: 1.6rem;
  26. margin-top: 3.6rem;
  27. margin-bottom: 8.0rem;
  28. }
  29.  
  30. h2 {
  31. text-align: center;
  32. }
  33.  
  34. input[type=email] {
  35. width: 100%;
  36. }
  37.  
  38. input[type=submit] {
  39. width: 100%;
  40. background-color: #000078;
  41. color: White;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement