_filtres.scss 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #views-exposed-form-projets-block-1{
  2. flex-direction: row;
  3. position: relative;
  4. align-items: center;
  5. }
  6. #views-exposed-form-base-de-donnees-block-1{
  7. flex-direction: column;
  8. margin-top: 1rem;
  9. @media (max-width: 479px){
  10. justify-content: center;
  11. }
  12. .js-form-item{
  13. // flex-direction: column !important;
  14. margin-right: 0 !important;
  15. input,
  16. select{
  17. width: 100%;
  18. text-align: end;
  19. }
  20. label{
  21. padding-right: 0.5rem !important;
  22. flex: 2 0 auto !important;
  23. }
  24. }
  25. }
  26. #views-exposed-form-base-de-donnees-block-1,
  27. #views-exposed-form-projets-block-1{
  28. display: flex;
  29. flex-wrap: wrap;
  30. .js-form-item{
  31. display: flex;
  32. flex-direction: row;
  33. max-width: 100%;
  34. margin-right: 1rem;
  35. margin-bottom: 1rem;
  36. padding: 0.5rem 1rem;
  37. align-items: baseline;
  38. border: solid black 0.5px ;
  39. justify-content: space-evenly;
  40. @media(max-width: 810px){
  41. display: flex;
  42. flex-direction: row;
  43. justify-content: space-between;
  44. }
  45. label{
  46. flex: 2 1 auto;
  47. padding-right: 2rem;
  48. &::after{
  49. content: ' : ';
  50. }
  51. }
  52. input{
  53. flex: 2 1 auto;
  54. max-width: 55%;
  55. @media(max-width: 810px){
  56. max-width: 100%;
  57. }
  58. }
  59. .form-checkbox{
  60. margin-right: 1rem;
  61. }
  62. .select-wrapper{
  63. margin: 0;
  64. }
  65. }
  66. .js-form-type-checkbox label{
  67. &::after{
  68. content: none;
  69. }
  70. }
  71. .form-actions{
  72. input{
  73. color: white;
  74. font-weight: 600;
  75. text-transform: uppercase;
  76. padding: 0.3rem 0.7rem;
  77. background-color: $blue-light;
  78. border: none;
  79. }
  80. }
  81. input, select{
  82. border: none;
  83. background-color: transparent;
  84. font-family: "Marianne";
  85. font-size: 1rem;
  86. }
  87. }