Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. body {
  2. background-color:purple;
  3. margin: 0;
  4. }
  5. a {
  6. color: white;
  7. text-decoration: none;
  8. }
  9.  
  10. #content {
  11. background-color: white;
  12. width: 900px;
  13. margin: 50px auto;
  14. padding: 35px;
  15. z-index: 100;
  16. }
  17.  
  18. #galeria {
  19. width: 600px;
  20. height: 600px;
  21. margin: 0 auto;
  22. position: relative;
  23. overflow: hidden;
  24. white-space:nowrap;
  25. white-space:nowrap;
  26.  
  27. }
  28.  
  29. #galeria>div {
  30. display: inline-block;
  31. background-size: cover;
  32. position: relative;
  33. width: 600px;
  34. height: 600px;
  35. left: 0;
  36. -webkit-animation: slide 15s linear infinite;
  37. -webkit-animation-delay: 1s;
  38. animation: slide 15s linear infinite;
  39. animation-delay: 1s;
  40. }
  41.  
  42.  
  43.  
  44. @-webkit-keyframes slide {
  45. 0% { left: 0%; }
  46. 20% { left: 0%; }
  47. 25% { left: -100%; }
  48. 45% { left: -100%; }
  49. 50% { left: -200%; }
  50. 70% { left: -200%; }
  51. 75% { left: -300%; }
  52. 95% { left: -300%; }
  53. 100% { left: -400%; }
  54. }
  55.  
  56. @keyframes slidy {
  57. 0% { left: 0%; }
  58. 20% { left: 0%; }
  59. 25% { left: -100%; }
  60. 45% { left: -100%; }
  61. 50% { left: -200%; }
  62. 70% { left: -200%; }
  63. 75% { left: -300%; }
  64. 95% { left: -300%; }
  65. 100% { left: -400%; }
  66. }
  67.  
  68. #banner {
  69. top: 0;
  70. background-color: #4386d3;
  71. height: 200px;
  72. width: 100%;
  73. position: absolute;
  74. margin: 0;
  75. padding: 20px 0;
  76. z-index: -100;
  77. }
  78.  
  79. #banner > div {
  80. font-size: 175%;
  81. margin: 0 auto;
  82. width: 960px;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement