Guest User

Untitled

a guest
Nov 18th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. /**
  6. * The first commented line is your dabblet’s title
  7. */
  8. @keyframes logoMove{
  9. 0%{
  10. transform: scale(10.0);
  11. }
  12. 100%{
  13. transform: scale(1.0);
  14. }
  15. }
  16.  
  17. @keyframes fadeIn{
  18. 0%{
  19. opacity:0;
  20. }
  21. 100%{
  22. opacity:1;
  23. }
  24. }
  25.  
  26. body{
  27. margin: auto;
  28. padding-top: 30px;
  29. max-width: 1000px;
  30. min-width: 900px;
  31. min-height: 100%;
  32. }
  33.  
  34. #branding {
  35. padding-bottom: 10px;
  36. padding-top: 15px;
  37. position: relative;
  38. z-index: 9999;
  39. }
  40.  
  41. #banderol {
  42. position: relative;
  43. background-color: #454746;
  44. -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5), 0px 10px 10px 0px rgba(255, 255, 255, 0.2) inset;
  45. -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5), 0px 10px 10px 0px rgba(255, 255, 255, 0.2) inset;
  46. -o-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5), 0px 10px 10px 0px rgba(255, 255, 255, 0.2) inset;
  47. box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5), 0px 5px 5px 0px rgba(255, 255, 255, 0.2) inset;
  48. border-top: 2px ridge #15A4A8;
  49. border-left: 2px ridge #15A4A8;
  50. margin: 0 7.6%;
  51. width: auto;
  52. height: 140px;
  53. }
  54.  
  55. #branding hgroup {
  56. margin: 0 4%;
  57. }
  58.  
  59. #site-title {
  60. margin-right: 270px;
  61. padding: 1em 0 0;
  62. }
  63.  
  64. h1, h2, h3, h4, h5, h6 {clear: both;
  65. }
  66.  
  67. #site-description {
  68. color: #7A7A7A;
  69. font-size: 14px;
  70. margin: 0 270px 3.65625em 0;
  71. }
  72.  
  73. #site-title a {
  74. color: white;
  75. font-size: 30px;
  76. line-height: 36px;
  77. text-decoration: none;
  78. font-family: "Comic Sans MS","Palatino Linotype","Times New Roman",Arial,sans-serif;
  79. text-transform: uppercase;
  80. -webkit-transition: text-shadow 0.5s ease-in-out;
  81. -moz-transition: text-shadow 0.5s ease-in-out;
  82. -o-transition: text-shadow 0.5s ease-in-out;
  83. transition: text-shadow 0.5s ease-in-out;
  84. }
  85.  
  86. #site-info {
  87. position: absolute;
  88. width: 180px;
  89. top: 30px;
  90. right: 60px;
  91. color: white;
  92. font-size: 24px;
  93. font-family: "Comic Sans MS","Palatino Linotype","Times New Roman",Arial,sans-serif;
  94. text-align: center;
  95. text-transform: uppercase;
  96. }
  97.  
  98. #branding img {
  99. height: auto;
  100. margin-bottom: -7px;
  101. width: 100%;
  102. }
  103.  
  104. #banderol img {
  105. position: absolute;
  106. width: 260px;
  107. height: 188px;
  108. top: -30px;
  109. left: 300px;
  110. animation: logoMove 1s ease-in forwards,fadeIn 0.5s linear forwards;;
  111. }
  112.  
  113. hgroup h1 a span{
  114. margin:-6px;
  115. opacity: 0;
  116. animation: fadeIn 0.5s ease-out forwards;
  117. }
  118.  
  119. hgroup h1 a span:nth-child(1){
  120. animation-delay: 0.0s;
  121. }
  122.  
  123. hgroup h1 a span:nth-child(2){
  124. animation-delay:0.2s;
  125. }
  126.  
  127. hgroup h1 a span:nth-child(3){
  128. animation-delay:0.4s;
  129. }
  130.  
  131. hgroup h1 a span:nth-child(4){
  132. animation-delay:0.6s;
  133. }
  134.  
  135. hgroup h1 a span:nth-child(5){
  136. animation-delay:0.8s;
  137. }
  138.  
  139. hgroup h1 a span:nth-child(6){
  140. animation-delay:1.0s;
  141. }
  142.  
  143. hgroup h1 a span:nth-child(7){
  144. animation-delay:1.2s;
  145. }
  146.  
  147. hgroup h1 a span:nth-child(8){
  148. animation-delay:1.4s;
  149. }
  150.  
  151. hgroup h1 a span:nth-child(9){
  152. animation-delay:1.6s;
  153. }
  154.  
  155. hgroup h1 a span:nth-child(10){
  156. animation-delay:1.8s;
  157. }
  158.  
  159. hgroup h1 a span:nth-child(11){
  160. animation-delay:2.0s;
  161. }
  162.  
  163. hgroup h1 a span:nth-child(12){
  164. animation-delay:2.2s;
  165. }
Add Comment
Please, Sign In to add comment