_mediaquery.scss 546 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @copyright 2015 by Tobias Reich
  3. */
  4. @media only screen and (max-width: 900px) {
  5. #title {
  6. margin: 0 20% !important;
  7. width: 40% !important;
  8. }
  9. #title.view {
  10. margin: 0 20% !important;
  11. width: 60% !important;
  12. }
  13. }
  14. @media only screen and (max-width: 640px) {
  15. #title {
  16. display: none !important;
  17. }
  18. #title.view {
  19. display: block !important;
  20. width: 70% !important;
  21. margin: 0 20% 0 10% !important;
  22. }
  23. .album, .photo {
  24. margin: 40px 0 0 50px !important;
  25. }
  26. #imageview .arrow_wrapper {
  27. display: none !important;
  28. }
  29. }