Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. /* MY */
  2.  
  3. .pager {
  4.   display: none !important;
  5. }
  6. .block{
  7.     display: block;
  8. }
  9. .news__with-img-bg .w-img img{
  10.     height: 100% !important;
  11. }
  12.  
  13. @keyframes anim-rotate {
  14.     0% {
  15.         transform: rotate(0);
  16.     }
  17.     100% {
  18.         transform: rotate(360deg);
  19.     }
  20. }
  21. .spinner {
  22.     animation: anim-rotate 2s infinite linear;
  23. }
  24. .spinner--steps {
  25.     animation: anim-rotate 1s infinite steps(8);
  26. }
  27. .spinner--steps2 {
  28.     animation: anim-rotate 1s infinite steps(12);
  29. }
  30. .mobile-body header {
  31.     position: fixed;
  32.     width: 100%;
  33.     z-index: 1000;
  34.     background-color: rgba(255,255,255,1);
  35. }
  36.  
  37. .bx-carousel .article__social-info, .w-news__item-lg .article__social-info{
  38.     color: white;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement