Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. @font-face {
  2. font-family: 'Sagoma-Regular';
  3. src: url('./fonts/Sagoma-Regular.otf') format('opentype');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7.  
  8. @keyframes pulse {
  9. 0% {
  10. background-color: #FF6A8B;
  11. }
  12. 25% {
  13. background: #0275D8;
  14. }
  15. 50% {
  16. background: #FFC300;
  17. }
  18. 75% {
  19. background: #9E01A5;
  20. }
  21. 100% {
  22. background-color: #FF6A8B;
  23. }
  24. }
  25.  
  26. body {
  27. background-color: #FFC300;
  28. text-align: center !important;
  29. animation: pulse 30s infinite;
  30. }
  31.  
  32. .mainTitle {
  33. font-family: 'Sagoma-Regular';
  34. color: #FFF;
  35. font-size: 75px;
  36. padding-top: 50px;
  37. }
  38.  
  39. .subTitle {
  40. font-family: 'Open sans';
  41. font-size: 23px;
  42. margin-top: 20px;
  43. }
  44.  
  45. .footer {
  46. position:fixed;
  47. height: 44px;
  48. background-color: #000;
  49. bottom:0;
  50. width:100%;
  51. margin-top: 75px !important
  52.  
  53. }
  54.  
  55. a {
  56. color: #FFF !important;
  57. }
  58.  
  59. a:hover {
  60. text-decoration: none;
  61. }
  62.  
  63. .myButton {
  64. margin-top: 30px;
  65. margin-bottom: 30px;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement