default.css 688 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. /*height: 100vh;*/
  13. text-decoration: none;
  14. /*overflow-x: hidden;*/
  15. }
  16. body{
  17. /*min-height: 100vh;*/
  18. }
  19. p, h1, h2{
  20. margin: 0;
  21. padding: 0;
  22. font-weight: normal;
  23. }
  24. ul, li{
  25. list-style: none;
  26. margin: 0;
  27. padding: 0;
  28. }
  29. img{
  30. vertical-align: bottom;
  31. -webkit-transition: filter 0.1s; /* Safari */
  32. transition: filter 0.1s;
  33. }
  34. a {
  35. text-decoration: none;
  36. color: black;
  37. }
  38. /*------------*/
  39. #block-formulairederecherche{
  40. display: none;
  41. }