Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.39 KB | None | 0 0
  1. * {
  2.  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  3. }
  4.  
  5. .Image {
  6. background-position: center top;
  7. animation: FadeIn 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  8. }
  9.  
  10. .Time .Digital > h1 {
  11. margin-left: -0.075em;
  12. font-size: 17em;
  13. font-weight: 100;
  14. animation: SplashPaperIntroFadeMore 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  15. }
  16.  
  17. .Time hr {
  18. border-top: 0px;
  19. margin: -20px;
  20. }
  21.  
  22. .Time > h3 {
  23.   margin-top: -0.5em;
  24.   margin-bottom: 9em;
  25. animation: SplashPaperIntroFade 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  26. }
  27. .Greeting {
  28.  animation: SplashPaperIntroFadeMore 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  29. }
  30.  
  31. .Quote {
  32. animation: SplashPaperIntroFade 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  33. }
  34. .Widgets > .container {
  35.   text-align: left;
  36. }
  37.  
  38. .Widgets {
  39.    text-align: left;
  40.    justify-content: flex-start;
  41.    padding-left: 6%;
  42.    padding-right: 6%;
  43. }
  44.  
  45. @media only screen
  46. and (max-width : 1800px)  {
  47.  .Time .Digital > h1 {
  48.   font-size: 8em;
  49. margin-bottom: 0.1em;
  50. }
  51.  
  52. .Time > h3 {
  53.  margin-bottom: 6em;
  54. }
  55.  
  56. .Greeting {font-size: 0.7em;}
  57. .Quote {font-size: 0.7em;}
  58. }
  59.  
  60.  
  61. @keyframes SplashPaperIntroFade {
  62.   from {
  63.       transform: translateY(50%);
  64.       opacity: 0;
  65.   }
  66.   to {
  67.   }
  68. }
  69.  
  70. @keyframes SplashPaperIntroFadeMore {
  71.   from {
  72.       transform: translateY(75%);
  73.       opacity: 0;
  74.   }
  75.   to {
  76.   }
  77. }
  78.  
  79. @keyframes FadeIn {
  80.   from {
  81.       opacity: 0;
  82.   }
  83.   to {
  84.   }
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement