Advertisement
Guest User

style.css

a guest
Dec 12th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. body{
  2. margin: 0;
  3. padding: 0;
  4. }
  5.  
  6. .item{
  7. height: 400px !important;
  8. }
  9.  
  10. .item img{
  11. width: 100%;
  12. height: 100%;
  13. object-fit: cover;
  14. position: absolute;
  15. top: 0px;
  16. bottom: 0px;
  17. left: 0px;
  18. right: 0px;
  19. }
  20.  
  21. .owl-nav .owl-prev span{
  22. position: absolute;
  23. bottom: 160px;
  24. right:600px;
  25. color: red;
  26. font-size: 80px;
  27. }
  28.  
  29. @media screen and (min-width: 600px) {
  30. .owl-nav .owl-prev span{
  31. position: absolute;
  32. left: 0px;
  33. top: 0px;
  34. }
  35. }
  36.  
  37.  
  38. .owl-nav .owl-next span{
  39. text-decoration: none;
  40. position: absolute;
  41. left: 600px;
  42. bottom: 160px;
  43. color: red;
  44. font-size: 80px;
  45. }
  46.  
  47.  
  48.  
  49. @media screen and (min-width: 600px) {
  50. .owl-nav .owl-next span{
  51. position: absolute;
  52. top: 0px;
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement