Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. <div class="banner-text index">
  2. <h4>Bienvenido a mi web</h4>
  3. <h3>Soy Jose Luis</h3>
  4. <div class="banner-slide">
  5. <h2 class="bnrtext">Soy un</h2>
  6. <b>
  7. <span class="span1">
  8. Desarrollador web
  9. <br /> Diseñador web
  10. <br /> Java developer
  11. <br /> Gamer
  12. <br /> Tonto el que
  13. <br /> lo lea
  14. <br />
  15. </span>
  16. </b>
  17. </div>
  18. </div>
  19.  
  20. .banner-text {
  21. text-align: center;
  22. width: 63%;
  23. margin: 11.9em auto;
  24. margin-left: 10%;
  25. padding: 2em 0;
  26. background: rgba(0, 0, 0, 0.16);
  27. outline: 6px solid rgba(255, 255, 255, 0.03);
  28. }
  29.  
  30. .banner-text h3 {
  31. color: #fff;
  32. font-size: 6em;
  33. margin: 0.1em 0 0.3em;
  34. text-transform: capitalize;
  35. }
  36.  
  37. .banner-slide {
  38. width: 48%;
  39. margin: 0 auto;
  40. }
  41.  
  42. .banner-text h4 {
  43. text-transform: capitalize;
  44. font-size: 3em;
  45. color: #fff;
  46. letter-spacing: 6px;
  47. font-weight: 300;
  48. }
  49.  
  50. h2.bnrtext {
  51. color: #fff;
  52. font-size: 3em;
  53. float: left;
  54. margin-left: 20px;
  55. height: 50px;
  56. font: 300 40px/50px 'Barlow Condensed';
  57. width: 100px;
  58. }
  59.  
  60. b {
  61. float: left;
  62. overflow: hidden;
  63. position: relative;
  64. height: 50px;
  65. }
  66.  
  67. span.span1 {
  68. display: inline-block;
  69. width: 240px;
  70. color: #fff;
  71. position: relative;
  72. white-space: nowrap;
  73. text-transform: uppercase;
  74. font: normal 40px/50px Barlow Condensed, sans-serif;
  75. font-weight: 600;
  76. top: 0;
  77. left: 0;
  78. -webkit-animation: move 7s;
  79. -webkit-animation-iteration-count: infinite;
  80. -webkit-animation-delay: 1s;
  81. }
  82. div.index{
  83. z-index: 999;
  84. position: absolute;
  85. }
  86.  
  87. @keyframes move {
  88. 0% {
  89. top: 0px;
  90. }
  91. 16% {
  92. top: -50px;
  93. }
  94. 32% {
  95. top: -100px;
  96. }
  97. 48% {
  98. top: -150px;
  99. }
  100. 64% {
  101. top: -200px;
  102. }
  103.  
  104. 80%{
  105. top: -250px;
  106. }
  107. 100%{
  108. top: -300px;
  109. }
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement