media-queries.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. @media only screen and (max-width: 955px) {
  2. body {
  3. overflow-y: auto;
  4. }
  5. #header{
  6. width: 100%;
  7. height: auto;
  8. padding-top: 0.5rem;
  9. }
  10. #logo{
  11. padding-bottom: 5px;
  12. }
  13. .app{
  14. position: fixed;
  15. width: 100%;
  16. height: 30px;
  17. left: 0;
  18. bottom: 0;
  19. background: white;
  20. display: -webkit-box;
  21. display: -ms-flexbox;
  22. display: flex;
  23. }
  24. .app a{
  25. padding-left: 30px;
  26. margin: auto 0;
  27. }
  28. .fr-en{
  29. margin-top: 5px;
  30. }
  31. .navigation{
  32. display: none;
  33. }
  34. .menu-ui{
  35. display: block;
  36. margin-right: 15px;
  37. }
  38. #navbar{
  39. margin-bottom: 5px;
  40. }
  41. h1{
  42. font-size: 1.5rem;
  43. margin: 0 auto;
  44. }
  45. #header .separation{
  46. position: relative;
  47. top:0;
  48. left: 1px;
  49. width: 100%;
  50. height: 1px;
  51. }
  52. #header .separation::before {
  53. position: absolute;
  54. margin: -1.5px 0 0 -2.5px;
  55. }
  56. .mCSB_container{
  57. padding-bottom: 0;
  58. }
  59. section .content{
  60. display: block;
  61. }
  62. section{
  63. left: 0;
  64. top: 65px;
  65. }
  66. section .content > div:not(#recherche-artistique){
  67. min-width: 100vw;
  68. -webkit-filter: blur(0);
  69. filter: blur(0);
  70. color: black;
  71. padding: 0 30px;
  72. }
  73. section #recherche-artistique{
  74. display: block;
  75. min-width: 100vw;
  76. }
  77. section #recherche-artistique > div{
  78. -webkit-filter: blur(0);
  79. filter: blur(0);
  80. color: black;
  81. min-width: 100vw;
  82. padding: 0 30px;
  83. }
  84. section .content img{
  85. width: 100%;
  86. }
  87. video{
  88. width:100%;
  89. }
  90. #lequipe img{
  91. width: 100%!important;
  92. }
  93. #gallery img{
  94. max-width: 95%;
  95. }
  96. #gallery .button{
  97. right: 2rem;
  98. }
  99. .bx-wrapper .bx-controls-direction a{
  100. top: 0;
  101. width: 20%;
  102. height: 100%;
  103. margin-top: 0;
  104. }
  105. .bx-wrapper .bx-prev,
  106. .bx-wrapper .bx-prev:hover,
  107. .bx-wrapper .bx-prev:focus{
  108. left: 5px;
  109. background-position: left;
  110. }
  111. .bx-wrapper .bx-next,
  112. .bx-wrapper .bx-next:hover,
  113. .bx-wrapper .bx-next:focus{
  114. right: 5px;
  115. background-position:right;
  116. }
  117. }
  118. @media only screen and (min-width: 955px) {
  119. .navigation{
  120. display: block!important;
  121. }
  122. }