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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
| header {
z-index: 2;
width: 100%;
height: auto;
background: url('BackgroundHeader.png');
}
}
* { margin:0%; padding:0%; border:0%; }
/* Onglets */
nav > ul{
margin: 0%;
padding: 0%;
}
nav li{
list-style-type:none;
}
nav > ul > li{
float: left;
position: relative;
}
nav > ul::after{
content: "";
display: table;
clear: both;
}
nav input[type=checkbox]{
display: none;
}
@media screen and (max-width : 1281px){
.menu-mobile{
display:block;
color: #0E305C;
background-color: #0E305C;
text-align: center;
padding : 0%;
}
nav ul{
display: none;
}
}
nav ul li, nav ul li a {
width: 100%;
text-align: center;
}
nav ul li a, nav ul li:hover a{
padding: 0.5% 0% 0.5% 0%;
}
nav{
width: 100%;
background-color: #0E305C;
}
nav a{
display: inline-block;
text-decoration: none;
}
nav > ul > li > a{
padding:1.5% 2%;
color: #FFF;
}
nav > ul > li:hover a{
padding:1% 2% 1% 2%;
}
.menu-home:hover{
border-top: 5px solid #9AA6BD;
background-color: RGBa (228, 77, 38, 0.15);
}
.menu-services:hover{
border-top: 5px solid #9AA6BD;
background-color: RGBa (228, 77, 38, 0.15);
}
.menu-contact:hover{
border-top: 5px solid #9AA6BD;
background-color: RGBa (228, 77, 38, 0.15);
}
.menu-equipe:hover{
border-top: 5px solid #9AA6BD;
background-color: RGBa (228, 77, 38, 0.15);
}
/* Menu des langues */
#langue {
float: left;
width: 100%;
}
#langue img {
display: inline;
border: 3px solid black;
float: right;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}
body
{
overflow-y: auto;
background: url('Background.png');
margin: 0%;
padding: 0%;
font-family: Exo-light;
src: url('Exo-Light.ttf');
color: #ffffff;
}
h1.hidden {
visibility: hidden;
}
#Logo
{ text-align: center;
}
.TexteADroite {
float: left
}
.Texte
{
width: 90%;
text-align: justify;
position: relative;
top:25px;
height: auto;
font-size: 16px;
padding: 1.5%;
}
hr.linestyle {
height: 30px;
border-style: solid;
border-color: #0E305C;
border-width: 1px 0 0 0;
border-radius: 20px;
}
hr.linestyle:before {
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: #0E305C;
border-width: 0 0 1px 0;
border-radius: 20px;
}
#Texte img {
border:3px solid black;
}
img, object, embed, canvas, video, audio, picture {
max-width: 100%;
height: auto;
_width: 100%; /* IE6 seulement */
}
/* Contact : envoi email */
form {
/* Pour le centrer dans la page */
margin: 0%;
max-width: 100%;
width: 100%; /* Pour voir les limites du formulaire */
padding: 4%;
}
form div + div {
margin-top: 2em;
}
label {
/* Afin de s'assurer que toutes les étiquettes aient la même dimension et soient alignées correctement */
display: inline-block;
width: 6%;
text-align: left;
}
input, textarea {
/* Afin de s'assurer que tous les champs textuels utilisent la même police
Par défaut, textarea utilise une police à espacement constant */
font: 1.5em sans-serif;
}
input:focus, textarea:focus {
/* Afin de rehausser les éléments actifs */
border-color: black;
}
textarea {
/* Pour aligner correctement les champs multilignes et leurs étiquettes */
vertical-align: top;
/* Pour donner assez d'espace pour entrer du texte */
height: 16em;
/* Pour permettre aux utilisateurs de redimensionner un champ textuel horizontalement
Cela ne marche pas avec tous les navigateurs */
resize: vertical;
}
.button {
/* Pour positionner les boutons de la même manière que les champs textuels */
padding-left: 4%; /* même dimension que les étiquettes */
}
button {
/* Cette marge représente approximativement le même espace
que celui entre les étiquettes et les champs textuels */
margin-left: 2%;
border: 1px solid;
text-decoration : none;
no-repeat;
background-color: #9AA6BD;
} |
Partager