You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

60 lines
990 B

  1. /*
  2. * Style tweaks
  3. * --------------------------------------------------
  4. */
  5. html,
  6. body {
  7. overflow-x: hidden; /* Prevent scroll on narrow devices */
  8. }
  9. body {
  10. padding-top: 70px;
  11. }
  12. footer {
  13. padding: 30px 0;
  14. }
  15. /*
  16. * Off Canvas
  17. * --------------------------------------------------
  18. */
  19. @media screen and (max-width: 767px) {
  20. .row-offcanvas {
  21. position: relative;
  22. -webkit-transition: all .25s ease-out;
  23. -o-transition: all .25s ease-out;
  24. transition: all .25s ease-out;
  25. }
  26. .row-offcanvas-right {
  27. right: 0;
  28. }
  29. .row-offcanvas-left {
  30. left: 0;
  31. }
  32. .row-offcanvas-right
  33. .sidebar-offcanvas {
  34. right: -50%; /* 6 columns */
  35. }
  36. .row-offcanvas-left
  37. .sidebar-offcanvas {
  38. left: -50%; /* 6 columns */
  39. }
  40. .row-offcanvas-right.active {
  41. right: 50%; /* 6 columns */
  42. }
  43. .row-offcanvas-left.active {
  44. left: 50%; /* 6 columns */
  45. }
  46. .sidebar-offcanvas {
  47. position: absolute;
  48. top: 0;
  49. width: 50%; /* 6 columns */
  50. }
  51. }