58 lines
934 B
CSS
58 lines
934 B
CSS
|
/*
|
||
|
* Fichier style.css
|
||
|
* Definition des elements par defaut
|
||
|
*/
|
||
|
|
||
|
/* Structure generale de la page */
|
||
|
@import url("css/bloc.css");
|
||
|
|
||
|
/* Structure generale de la page */
|
||
|
@import url("css/button.css");
|
||
|
|
||
|
|
||
|
body {
|
||
|
background: #FFFFFF;
|
||
|
}
|
||
|
|
||
|
*{
|
||
|
font-size: 1em;
|
||
|
font-family: verdana, Arial, sans-serif;
|
||
|
text-align: left;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
h1{font-weight:bold; font-size: 1.20em;}
|
||
|
h2{font-weight:bold; font-size: 1.15em;}
|
||
|
h3{font-weight:bold; font-size: 1.10em;}
|
||
|
h4{font-weight:bold; font-size: 1.05em;}
|
||
|
h5{font-weight:bold; font-size: 1.05em;}
|
||
|
h6{font-weight:bold; font-size: 1.05em;}
|
||
|
|
||
|
hr {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
height: 0;
|
||
|
clear: both;
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
|
||
|
img{vertical-align:middle; border:0;}
|
||
|
|
||
|
div{}
|
||
|
span{}
|
||
|
code{}
|
||
|
p{}
|
||
|
label{}
|
||
|
a{color:#0000FF;}
|
||
|
a:hover{}
|
||
|
form {padding:0;margin:0;}
|
||
|
input, textarea, select {}
|
||
|
|
||
|
.hidden{
|
||
|
border: 0;
|
||
|
height: 0;
|
||
|
width: 0;
|
||
|
position: absolute;
|
||
|
display: none;
|
||
|
}
|
||
|
strong, b{font-weight: bold;}
|