styles.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* Définition des polices personnalisées */
  2. @font-face
  3. {
  4. font-family: 'Karla';
  5. src: url('polices/karla_fr.allfont.net.eot');
  6. src: url('polices/karla_fr.allfont.net.eot') format('embedded-opentype'),
  7. url('polices/karla_fr.allfont.net.woff') format('woff'),
  8. url('polices/karla_[fr.allfont.net].ttf') format('truetype'),
  9. url('polices/karla_fr.allfont.net.svg') format('svg');
  10. font-weight: normal;
  11. font-style: normal;
  12. }
  13. @font-face
  14. {
  15. font-family: 'Karla Bold';
  16. src: url('polices/karla-bold_fr.allfont.net.eot');
  17. src: url('polices/karla-bold_fr.allfont.net.eot') format('embedded-opentype'),
  18. url('polices/karla-bold_fr.allfont.net.woff') format('woff'),
  19. url('polices/karla-bold_[fr.allfont.net].ttf') format('truetype'),
  20. url('polices/karla-bold_fr.allfont.net.svg') format('svg');
  21. font-weight: normal;
  22. font-style: normal;
  23. }
  24. /* Header */
  25. .bandeau {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: flex-end;
  29. justify-content: space-between;
  30. background-color: #efdfe2ff;
  31. font-family: "karla", sans-serif;
  32. align-items: center;
  33. /* padding-left: 50px;
  34. padding-right: 50px; */
  35. font-size: 1rem;
  36. }
  37. .bandeau img {
  38. width: auto;
  39. height: 100px;
  40. }
  41. .bandeau a {
  42. text-decoration: none;
  43. color: black;
  44. }
  45. .bandeau a:hover {
  46. color: #d3ad30;
  47. transition: 0.3s ease-in-out;
  48. }
  49. /* main {
  50. position: relative;
  51. } */
  52. .logo_seize {
  53. width: 25%;
  54. height: auto;
  55. display: block;
  56. margin: auto;
  57. margin-top: 100px;
  58. margin-bottom: 200px;
  59. /* position: absolute;
  60. left: 10%; */
  61. }
  62. ul {
  63. display: flex;
  64. flex-direction: row;
  65. align-items: flex-end;
  66. justify-content: space-around;
  67. font-family: "karla", sans-serif;
  68. font-size: 1.5rem;
  69. text-transform: uppercase;
  70. width: 60%;
  71. margin: auto;
  72. list-style: none;
  73. /* list-style: symbols(square); */
  74. }
  75. /* li {
  76. padding-left: 50px;
  77. } */
  78. li::after {
  79. content:"\25AA";
  80. color: #d3ad30;
  81. transform: rotate(45deg) translate(-50%);
  82. position: absolute;
  83. padding-left: 30px;
  84. }
  85. nav a {
  86. text-decoration: none;
  87. color: black;
  88. }
  89. nav a:hover {
  90. color: #d3ad30;
  91. }
  92. /* #facebook, #instagram, #pinterest, #mail {
  93. width: 3%;
  94. height: 3%;
  95. } */
  96. /* Réseaux sociaux logo doré au survol OK, mais pb taille images (images survol pas dans html) */
  97. /* #facebook a {
  98. display: inline-block;
  99. background: url("images/logo_facebook_2.png") no-repeat;
  100. }
  101. #facebook a:hover img {
  102. visibility: hidden;
  103. }
  104. #instagram a {
  105. display: inline-block;
  106. background: url("images/instagram_logo_2.png") no-repeat;
  107. }
  108. #instagram a:hover img {
  109. visibility: hidden;
  110. }
  111. #pinterest a {
  112. display: inline-block;
  113. background: url("images/pinterest_logo_2.png") no-repeat;
  114. }
  115. #pinterest a:hover img {
  116. visibility: hidden;
  117. }
  118. #mail a {
  119. display: inline-block;
  120. background: url("images/mail_2.png") no-repeat;
  121. }
  122. #mail a:hover img {
  123. visibility: hidden;
  124. } */
  125. /*
  126. .card {
  127. width: 130px;
  128. height: 195px;
  129. position: relative;
  130. display: inline-block;
  131. margin: 50px;
  132. }
  133. .card .img-top {
  134. display: none;
  135. position: absolute;
  136. top: 0;
  137. left: 0;
  138. z-index: 99;
  139. }
  140. .card:hover .img-top {
  141. display: inline;
  142. }
  143. /*#facebook:hover {
  144. background: url("/images/logo_facebook_2.png") no-repeat;
  145. }
  146. */