styles2.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. width: auto;
  27. height: 150px;
  28. background-color: #efdfe2ff;
  29. font-family: "karla", sans-serif;
  30. font-size: 3rem;
  31. display: flex;
  32. align-items: flex-end;
  33. justify-content: space-between;
  34. /* padding: 50px; */
  35. }
  36. .bandeau p {
  37. color: red;
  38. }
  39. .bandeau img {
  40. width: auto;
  41. height: 70px;
  42. padding-right: 50px;
  43. padding-bottom: 20px;
  44. }
  45. .bandeau .reseaux {
  46. margin-left: 100px;
  47. }
  48. .bandeau a {
  49. text-decoration: none;
  50. color: black;
  51. }
  52. /*
  53. .bandeau a .reseau {
  54. width: auto;
  55. height: 100px;
  56. text-decoration: none;
  57. color: black;
  58. } */
  59. .logo_seize {
  60. width: 25%;
  61. height: auto;
  62. display: block;
  63. margin: auto;
  64. margin-top: 100px;
  65. margin-bottom: 200px;
  66. /* position: absolute;
  67. left: 10%; */
  68. }
  69. ul {
  70. display: flex;
  71. flex-direction: row;
  72. align-items: flex-end;
  73. justify-content: space-around;
  74. font-family: "karla", sans-serif;
  75. font-size: 4rem;
  76. text-transform: uppercase;
  77. width: 60%;
  78. margin: auto;
  79. list-style: none;
  80. /* list-style: symbols(square); */
  81. }
  82. /* li {
  83. padding-left: 50px;
  84. } */
  85. li::after {
  86. content:"\25AA";
  87. color: #d3ad30;
  88. transform: rotate(45deg) translate(-50%);
  89. position: absolute;
  90. padding-left: 3%;
  91. }
  92. nav a {
  93. text-decoration: none;
  94. color: black;
  95. }
  96. nav a:hover {
  97. color: #d3ad30;
  98. text-decoration: underline;
  99. transition: all 0.2s ease-in-out;
  100. }