Pouknouki

Code CSS de la page avec les boutons

Jun 18th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. @font-face
  2. {
  3. font-family: "Exo";
  4. src: url("fonts/Exo-Regular.otf");
  5. }
  6. @font-face
  7. {
  8. font-family: "SourceCodePro";
  9. src: url("fonts/SourceCodePro-Regular.otf");
  10. }
  11. *
  12. {
  13. font-family: "Exo";
  14. }
  15. p
  16. {
  17. padding: 10px;
  18. text-align: justify;
  19. }
  20. /* table
  21. {
  22. padding: 10px;
  23. text-align: justify;
  24. }
  25. td
  26. {
  27. text-align: center;
  28. }
  29. */.elementMenu::selection { background-color: eb6d10; }
  30. .elementMenu
  31. {
  32. display: inline-block;
  33. height: 20px;
  34. width: 125;
  35. padding: 5px;
  36. text-align: center;
  37. background-color: #eb6d10;
  38. border: 1px solid #e66720;
  39. border-radius: 2px;
  40. text-decoration: none;
  41. color: black;
  42. }
  43. .elementMenu:hover::selection { background-color: eb6d10; }
  44. .elementMenu:hover
  45. {
  46. color: white;
  47. background-color: #7e7e7e;
  48. }
  49. nav
  50. {
  51. position: absolute;
  52. right: 20px;
  53. top: 50px;
  54. display: inline-block;
  55. vertical-align: top;
  56. }
  57. aside
  58. {
  59. position: fixed;
  60. right: 20px;
  61. top: 150px;
  62. padding-left: 0px;
  63. border-left: 1px solid #f7a623;
  64. }
  65. .connexion
  66. {
  67. width: 350px;
  68. height: 350px;
  69. overflow: hidden;
  70. border: 0px;
  71. /* position: absolute;
  72. right: 0px;
  73. top: 150px;
  74. */}
  75. .champConnexion
  76. {
  77. padding: 25px;
  78. width: 200px;
  79. height: 35px;
  80. position: relative;
  81. display: inline-block;
  82. top: 15%;
  83. left: 50%;
  84. margin-left: -100px;
  85. border-radius: 2px;
  86. border: 1px solid blue;
  87. margin-bottom: 10px;
  88. }
  89. #titreConnexion
  90. {
  91. color: #d04c2b;
  92. font-size: 20px;
  93. text-align: center;
  94. }
  95. #boutonConnexion
  96. {
  97. width: 200px;
  98. height: 35px;
  99. position: relative;
  100. display: inline-block;
  101. top: 15%;
  102. left: 50%;
  103. margin-left: -100px;
  104. border-radius: 2px;
  105. border: 1px solid blue;
  106. margin-bottom: 10px;
  107. }
  108. .erreurLogin
  109. {
  110. color: #e09900;
  111. text-align: center;
  112. }
  113. .erreurLogin a
  114. {
  115. padding: 10px;
  116. text-decoration: none;
  117. color: #ffe9bb;
  118. }
  119. body
  120. {
  121. background-image: url("images/fond.png");
  122. background-repeat: repeat;
  123. }
  124. #cadreStats
  125. {
  126. position: absolute;
  127. top: 200px;
  128. left: 50%;
  129. margin-left: -500px;
  130. width: 800px;
  131. }
  132. .sectionStatsTexte
  133. {
  134. float: top;
  135. width: 800px;
  136. /* position: absolute;
  137. display: inline-block;
  138. top: 200px;
  139. left: 50%;
  140. margin-left: -500px;
  141. */ background-color: white;
  142. border-radius: 2px;
  143.  
  144. }
  145. .container
  146. {
  147. float: bottom;
  148. display: inline-block;
  149. width: 800px;
  150. /* position: absolute;
  151. top: 200px;
  152. left: 25%;
  153. margin-left: -500px;
  154. */ background-color: white;
  155. border-radius: auto;
  156. }
  157. .pageClassique
  158. {
  159. display: inline-block;
  160. width: 800px;
  161. position: absolute;
  162. top: 200px;
  163. left: 50%;
  164. margin-left: -500px;
  165. background-color: white;
  166. border-radius: 2px;
  167. }
  168. p::selection
  169. {
  170. background-color: white;
  171. }
  172.  
  173. #titre
  174. {
  175. font-family: "SourceCodePro";
  176. color: #f45307;
  177. font-size: 3.5em;
  178. position: absolute;
  179. margin-top: 20px;
  180. margin-left: 100px;
  181. text-decoration: none;
  182. }
  183. .listeTelechargement
  184. {
  185. list-style-type: none;
  186. }
  187. #conteneurDownload
  188. {
  189. margin: 25px;
  190. }
  191. .boutonDownload
  192. {
  193. border: 1px solid #b41414;
  194. background-color: #e94545;
  195. text-align: center;
  196. padding: 5px;
  197. border-radius: 2px;
  198. margin: 10px;
  199. color: white;
  200. text-decoration: none;
  201. }
  202. .boutonDownload:hover
  203. {
  204. background-color: #f28e8e;
  205. }
  206. /* #download1
  207. {
  208. float: left;
  209. clear: both;
  210. }
  211. #download2
  212. {
  213. float: right;
  214. clear: both;
  215. }
  216. */
  217. #download1
  218. {
  219. position: relative;
  220. left: 25px;
  221. }
  222. #download2
  223. {
  224. position: absolute;
  225. right: 25px;
  226. }
  227.  
  228. #inscriptionCloud
  229. {
  230. display: none;
  231. }
Advertisement
Add Comment
Please, Sign In to add comment