brnl_nicolas

css

Feb 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.50 KB | None | 0 0
  1. body
  2. {
  3.     max-width: 1950px;
  4.     margin: 0px;
  5.     background-color: #333;
  6. }
  7.  
  8. *
  9. {
  10.     max-width: 1950px;
  11. }
  12.                 /* MENU */
  13.  
  14.  
  15. nav
  16. {
  17.     width: 1950px;
  18.     height: 100px;
  19.     position: fixed;
  20.     top: 0px;
  21.     z-index: 10030;
  22. }
  23.  
  24. .bouton_gauche
  25. {
  26.  padding-top: 10px;
  27.  padding-bottom: 13px;
  28. }
  29.  
  30. ul#bouton
  31. {
  32.     list-style-type : none;
  33.     margin: 0px;
  34.     padding-left: 15px;
  35.     text-shadow: 4px 4px 8px #000000
  36. }
  37. .bouton_droite
  38. {
  39.     float: right;
  40.     font-size: 1em;
  41.     text-align: center;
  42.     padding-top: 41px;
  43.     padding-right: 35px;
  44.     text-shadow: 4px 4px 8px #000000
  45. }
  46.  
  47. .bouton_droite a, .bouton_droite a:hover
  48. {
  49.     font-family: "Eras Light ITC";
  50.     padding-top: 41px; /*permet le centrage vertical*/
  51.     padding-bottom:41px;
  52.     padding-left:25px;
  53.     padding-right:25px;
  54.     color: white;
  55.     text-decoration: none;
  56.     text-shadow: 4px 4px 8px #000000
  57. }
  58.  
  59. .bouton_droite a:hover
  60. {
  61.     opacity: 0.82;
  62.     background: #444;
  63. }
  64.  
  65.                 /* Arme photo */
  66.  
  67. .fusil
  68. {
  69.     width: 1903px;
  70.     height: 950px;
  71. }
  72.  
  73. .intro h1
  74. {
  75.     text-align: center;
  76.     color: white;
  77.     position: relative;
  78.     font-size: 2.5em;
  79.     margin: 0px;
  80.     bottom: 580px;
  81.     text-shadow: 4px 4px 8px #000000
  82.  
  83. }
  84.  
  85.                 /* Presentation + vidéo */
  86.  
  87.  
  88. .presentation
  89. {  
  90.     padding-top: 50px;
  91.     padding-bottom: 50px;
  92.     padding-left: 15px;
  93.     padding-right: 200px;
  94.     display: flex;
  95.     justify-content: space-between;
  96. }
  97.  
  98. .presentation h1
  99. {
  100.     color: white;
  101.     font-size: 2.3em;
  102.     font-family: "Eras Light ITC";
  103.     border-bottom: 1px white solid;
  104.     width: 450px;
  105. }
  106.  
  107. .presentation h2
  108. {
  109.     color: #999;
  110.     font-size: 1.3em;
  111.     font-family: "Eras Light ITC";
  112.  
  113. }
  114.  
  115. .texte
  116. {
  117.     width: 700px;
  118. }
  119.  
  120.                 /* Actu & agenda */
  121.  
  122. .box
  123. {
  124.     background-color: #3F3F3F;
  125.     padding-top:50px;
  126.     padding-bottom:50px;
  127.     text-align: center;
  128.     color: white;
  129. }
  130.  
  131. .box h2
  132. {
  133.     font-size: 2.2em;
  134.     text-shadow: 4px 4px 8px #000000;
  135. }
  136.                 /* Fiche */
  137.                 /* haut de page */
  138.  
  139. #fiche
  140. {
  141.     margin-top: 99px;
  142. }
  143.  
  144. .patch
  145. {
  146.     width: 100%;
  147.     height: 500px;
  148. }
  149.  
  150.             /* carré info */
  151.  
  152. .prix
  153. {
  154.     font-size: 2.6em;
  155.     color: #00632f;
  156. }
  157. .info
  158. {
  159.     display: block;
  160.     height: 400px;
  161.     width: 420px;
  162.     background-color: rgba(51, 51, 51, 0.5);
  163.     float: right;
  164.     position: relative;
  165.     bottom: 475px;
  166.     right: 80px;
  167.     padding-top: 40px;
  168.     padding-left: 40px;
  169.     padding-right: 40px;
  170.     color: white;
  171. }
  172. .info a
  173. {
  174.     display:block;
  175.     width:420px;
  176.     line-height:50px;
  177.     text-align:center;
  178.     background-color: #00632f;
  179.     color:white;
  180.     text-decoration:none;
  181.     position: relative;
  182.     float: right;
  183.     font-size: 2em;
  184.     position: relative;
  185.     bottom: 30px;
  186. }
  187.  
  188. .info a:hover
  189. {
  190.     background-color: #013519;
  191. }
  192.  
  193. .info h3
  194. {
  195.     position: relative;
  196.     bottom: 30px;
  197.     border-bottom: 1px white dashed ;
  198.     padding-bottom: 30px;
  199.     font-family: "Eras Light ITC";
  200.     font-size: 1.3em;
  201.     text-shadow: 4px 4px 8px #000000
  202. }
  203.  
  204. .info h4
  205. {
  206.     position: relative;
  207.     bottom: 20px;
  208.     font-size: 1.2em;
  209.     text-shadow: 4px 4px 8px #000000
  210. }
  211.  
  212. .infos
  213. {
  214.     text-decoration: underline;
  215.     color: #086130;
  216. }
  217.  
  218.  
  219.  
  220.             /* INFO */
  221. .charte
  222. {
  223.     display: block;
  224.     width: 1603px;
  225.     height: 900px;
  226.     color: white;
  227.     position: relative;
  228.     top: 50px;
  229.     left: 300px;
  230.  
  231.  
  232.  
  233. }
  234.  
  235. .charte ul, li
  236. {
  237.     list-style-type: none;
  238.     padding-bottom: 25px;
  239.     padding-left: 0px;
  240.     margin: 0px;
  241.     font-size: 1.1em;
  242.  
  243. }
  244.  
  245. .last
  246. {
  247.     border-bottom: 1px #086130 solid;
  248.     max-width:600px;
  249.  
  250. }
  251.  
  252.                 /* Contact */
  253. .conta
  254. {
  255.     height: 900px;
  256. }
  257.  
  258. .contact h1
  259. {
  260.     margin: 0px;
  261.     font-size: 2em;
  262.     color: white;
  263.     font-family: " eras light ITC";
  264.     position: relative;
  265.     top: 99px;
  266.     background-color: #444444;
  267.     padding-top:42px;
  268.     padding-bottom: 43px;
  269.     padding-left: 580px;
  270. }
  271.  
  272. .case
  273. {
  274.     position: relative;
  275.     top: 50px;
  276.     padding-bottom: 80px;
  277. }
  278.  
  279. .case input, textarea, .envoi
  280. {
  281.     width: 250px;
  282.     height: 30px;
  283.     font-size: 25px;
  284.     background-color: #444444;
  285.     border: 1px #444444 solid;
  286.     color: white;
  287.     position: relative;
  288.     left: 30%
  289. }
  290.  
  291. textarea
  292. {
  293.  
  294.     width: 758px;
  295.     height: 100px;
  296.     font-size: 15px;
  297.     margin-bottom: 30px;
  298. }
  299.  
  300. .envoi, .envoi:hover
  301. {
  302.     background-color: #0B3715;
  303.     border:1px #0B3715 solid;
  304.     width: 150px;
  305.     height: 50px;
  306. }
  307.  
  308. .envoi:hover
  309. {
  310.     background-color: #086130;
  311. }
  312.  
  313. h5
  314. {
  315.     color: white;
  316.     float: right;
  317.     position: relative;
  318.     right: 245px;
  319.     bottom: 255px;
  320.     font-size: 1em;
  321.     margin: 0px;
  322.     background-color: rgba(80, 80, 80, 0.5);
  323.     width: 250px;
  324.     height: 143px;
  325.     padding-left: 30px;
  326.     padding-bottom: 15px;
  327.     padding-top: 15px;
  328.  
  329. }
  330.  
  331. .mail a
  332. {
  333.     color: #086130;
  334.     text-decoration: none;
  335.     text-shadow: 4px 4px 8px #000000
  336. }
  337.  
  338. .mail a:hover
  339. {
  340.     text-decoration: underline;
  341. }
Add Comment
Please, Sign In to add comment