Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. /* Feuille de style - Site Web - Le potager */
  2. /* Feuille principale */
  3.  
  4. header
  5. {
  6. margin-bottom: 2%;
  7. text-align: center;
  8. background-color:#142742;
  9. }
  10.  
  11. /* hr */
  12. /* { */
  13. /* color: white; */
  14. /* background-color: white; */
  15. /* height: 3px; */
  16. /* box-shadow: 0 20px 20px -20px #333; */
  17. /* } */
  18. hr
  19. {
  20. border:none;
  21. height:2px;
  22. border-bottom: 1px solid white;
  23. }
  24.  
  25. body
  26. {
  27. background-color:#081a33;
  28. color:white;
  29. }
  30.  
  31. nav ul, nav li
  32. {
  33. list-style-type: none;
  34. margin: 0;
  35. padding: 0;
  36. }
  37. nav li
  38. {
  39. float: left;
  40. width: 20%;
  41. text-align: center;
  42. font-family: Arial;
  43. Color: grey;
  44. }
  45.  
  46. nav a
  47. {
  48. display: block;
  49. border-bottom: 1px;
  50. padding: 0 2em;
  51. line-height: 200%;
  52. text-decoration: none;
  53. }
  54.  
  55. nav
  56. {
  57. width: 100%;
  58. overflow: auto;
  59. }
  60.  
  61. h1
  62. {
  63. font-family: Coolvetica;
  64. }
  65.  
  66. fieldset
  67. {
  68. background-color: #355684;
  69. }
  70.  
  71. div.titre
  72. {
  73. background-color :#213654;
  74. }
  75. section.principal
  76. {
  77. margin-left: 20%;
  78. margin-right: 20%;
  79. }
  80.  
  81. table.film
  82. {
  83. margin-left:auto;
  84. margin-right:auto;
  85. border-collapse: collapse;
  86. color:black;
  87. }
  88.  
  89. table.film td
  90. {
  91. border-style: none;
  92. width: 6em;
  93. text-align: center;
  94.  
  95. }
  96.  
  97. @font-face
  98. {
  99. font-family: Coolvetica;
  100. src: url('../fonts/coolvetica_rg.ttf')
  101. }
  102.  
  103. td.affiche
  104. {
  105.  
  106. }
  107.  
  108. td.gris-sombre-jour
  109. {
  110. background: #BEBEBE;
  111. text-align: left;
  112.  
  113. }
  114. td.gris-sombre-heure
  115. {
  116. background: #BEBEBE;
  117. text-align:center;
  118.  
  119. }
  120.  
  121. td.gris-clair-jour
  122. {
  123. background: #E1E1E1;
  124. text-align: left;
  125. }
  126.  
  127. td.gris-clair-heure
  128. {
  129. background: #E1E1E1;
  130. text-align:center;
  131. }
  132.  
  133. .bouton
  134. {
  135. font-weight:bold;
  136. color: grey;
  137. border-color: white;
  138. }
  139.  
  140. a.bouton:hover
  141. {
  142. background-color:#216ad1;
  143.  
  144. color:white;
  145. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement