Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.72 KB | None | 0 0
  1. body {
  2.     background-color: #232323;
  3.     margin: 0;
  4.     font-family: "Montserrat", "Avenir";
  5. }
  6.  
  7. #container {
  8.     margin: 20px auto;
  9.     max-width: 600px;
  10. }
  11.  
  12. h1 {
  13.     text-align: center;
  14.     line-height: 1.1;
  15.     font-weight: normal;
  16.     color: white;
  17.     background: steelblue;
  18.     margin: 0;
  19.     text-transform: uppercase;
  20.     padding: 20px 0;
  21. }
  22.  
  23. #colorDisplay {
  24.     font-size: 200%;
  25. }
  26.  
  27. #message {
  28.     display: inline-block;
  29.     width: 20%;
  30. }
  31.  
  32. #stripe {
  33.     background: white;
  34.     height: 30px;
  35.     text-align: center;
  36.     color: black;
  37. }
  38.  
  39. .selected {
  40.     color: white;
  41.     background: steelblue;
  42. }
  43.  
  44. button {
  45.     border: none;
  46.     background: none;
  47.     text-transform: uppercase;
  48.     height: 100%;
  49.     font-weight: 700;
  50.     color: steelblue;
  51.     letter-spacing: 1px;
  52.     font-size: inherit;
  53.     transition: all 0.3s;
  54.     -webkit-transition: all 0.3s;
  55.     -moz-transition: all 0.3s;
  56.     outline: none;
  57. }
  58.  
  59. button:hover {
  60.     color: white;
  61.     background: steelblue;
  62. }
  63.  
  64. .heart {
  65.     background: purple;
  66.     display: inline-block;
  67.     height: 60px;
  68.     margin: 50px;
  69.     position: relative;
  70.     top: 0;
  71.     transform: rotate(-45deg);
  72.     width: 60px;
  73.     float: left;
  74.     transition: background 0.6s;
  75.     -webkit-transition: background 0.6s;
  76.     -moz-transition: background 0.6s;
  77. }
  78.  
  79. .heart:before,
  80. .heart:after {
  81.     content: "";
  82.     background: purple;
  83.     border-radius: 50%;
  84.     height: 60px;
  85.     position: absolute;
  86.     width: 60px;
  87.     float: left;
  88.     transition: background 0.6s;
  89.     -webkit-transition: background 0.6s;
  90.     -moz-transition: background 0.6s;
  91. }
  92.  
  93. .heart:before {
  94.     top: -30px;
  95.     left: 0;
  96. }
  97.  
  98. .heart:after {
  99.     left: 30px;
  100.     top: 0;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement