Guest User

Untitled

a guest
Dec 15th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. body {
  2. background-color: #232323;
  3. margin: 0;font-family: "Montserrat", "Avenir";
  4. }
  5.  
  6. .square {
  7. width: 30%;
  8. background: purple;
  9. padding-bottom: 30%;
  10. float: left;
  11. margin: 1.60%;
  12. border-radius: 50%;transition: background 1.0s;
  13. -webkit-transition: background 0.6s;
  14. -moz-transition: background 0.6s;
  15. }
  16.  
  17. #container {
  18. margin: 20px auto;
  19. max-width: 600px;
  20. }
  21.  
  22. h1 {text-align: center;
  23. color: white; background: steelblue; line-height: 1.1;font-weight: normal;margin: 0;text-transform: uppercase;padding: 20px 0;
  24. }
  25. h2{text-align: center;color: white;}
  26. h3{text-align: center;color: white;background: steelblue;font-weight: normal;margin: 0;text-transform: uppercase;}
  27. span {
  28. color: red;
  29. }
  30. #stripe{background: white; text-align: center; height: 30px;color: black;}
  31.  
  32. .selected {
  33. background: steelblue; color: white;
  34. }
  35.  
  36. button {
  37. border: none;
  38. background: none;
  39. text-transform: uppercase;
  40. height: 100%;
  41. font-weight: 700;
  42. color: steelblue;
  43. letter-spacing: 1px;
  44. font-size: inherit;
  45. transition: all 0.3s;
  46. -webkit-transition: all 0.3s;
  47. -moz-transition: all 0.3s;
  48. outline: none;
  49. }
  50.  
  51. button:hover {
  52. color: white;
  53. background: steelblue;
  54. }
  55.  
  56. #message {
  57. display: inline-block;
  58. width: 20%;
  59. }
  60.  
  61. #colorDisplay {
  62. font-size: 200%;
  63. }
Add Comment
Please, Sign In to add comment