1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
| /* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){
#container{
min-width:320px;
max-width:480px;
}
}
/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px){
#container{
min-width:480px;
max-width:640px;
}
}
/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){
#container{
min-width:320px;
max-width:480px;
}
}
/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){
#container{
min-width:768px;
max-width:1024px;
}
}
/* #### Desktops #### */
@media screen and (min-width: 1024px){
#container{
max-width:1990px;
}
}
/* ----------------------------------------------------
GOOGLE FONTS
------------------------------------------------------- */
/* Oswald */
@import url(http://fonts.googleapis.com/css?family=Oswald);
/* Droid Sans */
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);
/* Droid Serif */
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);
/* ----------------------------------------------------
GLOBAL STRUCTURE
------------------------------------------------------- */
/* --------------------------- CSS Reset ----------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3,
h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {margin: 0 auto;padding: 0;border: 0;outline: 0;font-weight: inherit;font-style: inherit;font-size: 12px;font-family: inherit;vertical-align: baseline;}
:focus { outline: 0;}
div { margin: 0; padding: 0; }
a, a:link, a:visited, a:hover, a:active{text-decoration:none}
table { border-collapse: separate;border-spacing: 0;}
th, td {text-align: left; font-weight: normal;}
img, iframe {border: none; text-decoration:none;}
ol, ul {list-style: none;}
input, textarea, select, button {font-size: 100%;font-family: inherit;}
select {margin: inherit;}
hr {margin: 0 -20px 16px -20px; padding: 0;border: 0;background-color: #d4d4d4;height: 1px; clear: both; width: auto;}
/* body */
body {
font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
line-height:20px;
position:relative;
background:url(../images/header-page-trait-gris.png) center top repeat-x #FFFFFF;
color:#666;
padding:0 0 0 1px;
}
/* Layout general*/
#container{
width:100%;
margin:0 auto 0 auto;
position:relative;
display: block;
border:0 !important;
}
/* Layout general*/
#wrapper{
width:960px;
margin:0 auto 0 auto;
position:relative;
display: block;
padding:0;
border:0 !important;
z-index:4;
}
/* header*/
#header{
margin-top:3em;
width:100%;
height:10em;
}
/* logo position */
#logo{
float:left;
padding:0.5em 0em 2em 2em;
width:15%;
min-width:15%;
}
/* recherche */
#search{
background:url(../images/header-recherche-trait-rouge.png) right top no-repeat #FFFFFF;
float:left;
padding:0;
width:80%;
}
/* recherche */
#search-content{
background:url(../images/header-recherche-bg-gris.png) right 2em repeat-x;
width:100%;
height:5em;
padding:2.2em 2em 0em 2em;
}
.header-recherche-champ{
position:absolute;
padding:1em 0 0 2em;
} |
Partager