default.css 703 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. *{
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box;
  5. }
  6. html, body {
  7. margin: 0;
  8. padding: 0;
  9. font-family: helvetica, sans-serif;
  10. font-size: 1rem;
  11. line-height: 1.4;
  12. /* COUCOU */
  13. /*height: 100vh;*/
  14. text-decoration: none;
  15. /*overflow-x: hidden;*/
  16. }
  17. body{
  18. /*min-height: 100vh;*/
  19. }
  20. p, h1, h2{
  21. margin: 0;
  22. padding: 0;
  23. font-weight: normal;
  24. }
  25. ul, li{
  26. list-style: none;
  27. margin: 0;
  28. padding: 0;
  29. }
  30. img{
  31. vertical-align: bottom;
  32. -webkit-transition: filter 0.1s; /* Safari */
  33. transition: filter 0.1s;
  34. }
  35. a {
  36. text-decoration: none;
  37. color: black;
  38. }
  39. /*------------*/
  40. #block-formulairederecherche{
  41. display: none;
  42. }