Advertisement
Guest User

Untitled

a guest
Aug 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.00 KB | None | 0 0
  1. html {
  2.     background: url('background.jpg') no-repeat center center fixed;
  3.     -webkit-background-size: cover;
  4.     -moz-background-size: cover;
  5.     -o-background-size: cover;
  6.     background-size: cover;
  7.     height: 100%;
  8.     overflow: hidden;
  9.     position: relative;
  10. }
  11.  
  12. body {
  13.     font-family: 'Archivo', sans-serif;
  14.     color: whitesmoke;
  15. }
  16.  
  17. h1 {
  18.     font-style: italic;
  19.     font-size: 8em;
  20.     letter-spacing: -8px;
  21.     text-shadow: 3px 2px 3px #9bd6d3;
  22. }
  23.  
  24. .wrapper {
  25.     position:absolute;
  26.     width: 100%;
  27. }
  28.  
  29. .centered {
  30.     float: center;
  31.     width: 100%;
  32.     margin-bottom: 30px;
  33. }
  34.  
  35. .calc {
  36.     padding:5em 50px;
  37.     margin: 30px;
  38. }
  39.  
  40. #result {
  41.     color: rgb(202, 58, 58);
  42.   font-size: 85px;
  43.   text-shadow: 1px 1px 1px #646161;
  44. }
  45.  
  46. #textResult {
  47.     color: white;
  48.     font-size: 40px;
  49.     height: 150px;
  50. }
  51.  
  52. .heart {
  53.   fill: red;
  54.   position: relative;
  55.   top: 5px;
  56.   width: 50px;
  57.   animation: pulse 1s ease infinite,
  58. }
  59.  
  60. @keyframes pulse {
  61.   0% { transform: scale(1); }
  62.   50% { transform: scale(1.3); }
  63.   100% { transform: scale(1); }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement