146 lines
No EOL
2.5 KiB
CSS
146 lines
No EOL
2.5 KiB
CSS
|
|
/* liens*/
|
|
a,
|
|
a:link,
|
|
a:visited {
|
|
margin:0;
|
|
padding:0;
|
|
border:0;
|
|
text-decoration: none;
|
|
color: black;
|
|
font-weight:bold;
|
|
}
|
|
a:hover,
|
|
a:link:hover,
|
|
a:visited:hover,
|
|
a:link:focus,
|
|
a:visited:focus,
|
|
a:link:active,
|
|
a:visited:active {
|
|
text-decoration: none;
|
|
text-decoration: none;
|
|
color:green;
|
|
}
|
|
|
|
|
|
/*Fond de page */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-image:url(../img/background.jpg);
|
|
-webkit-background-size: cover; /* pour Chrome et Safari */
|
|
-moz-background-size: cover; /* pour Firefox */
|
|
-o-background-size: cover; /* pour Opera */
|
|
background-size: cover; /* version standardisée */
|
|
font: normal 87.5%/1.4 Arial, sans-serif;
|
|
/* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */
|
|
-webkit-text-size-adjust: 100%;
|
|
position: relative;
|
|
|
|
}
|
|
|
|
/*******************************/
|
|
|
|
/* SEARCH */
|
|
.khnav_search,
|
|
.khnav_search iframe
|
|
{
|
|
margin:0;padding:0;
|
|
height:35px;
|
|
float:right;
|
|
margin-right:25px;
|
|
}
|
|
.khnav_search input[type="text"]
|
|
{
|
|
margin:0px;padding:0 4px;
|
|
margin-top:0.5em;
|
|
font-size:1em;
|
|
|
|
border-top-left-radius: 5px 5px;
|
|
border-bottom-left-radius: 5px 5px;
|
|
border:solid 1px #ffffff;
|
|
}
|
|
|
|
.khnav_search input[type="submit"]
|
|
{
|
|
margin:0;padding:0 4px;
|
|
margin-left:-4px;
|
|
font-size:1em;
|
|
|
|
border-top-right-radius: 5px 5px;
|
|
border-bottom-right-radius: 5px 5px;
|
|
border:none;
|
|
|
|
background-color:#4188D3;
|
|
color:#ffffff;
|
|
|
|
font-family: "Verdana","Arial","Helvetica",sans-serif;
|
|
}
|
|
|
|
/* quand il n'y a rien à afficher */
|
|
#khnav_search_noresult
|
|
{
|
|
width:50%;
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
padding:3%;
|
|
text-align: center;
|
|
margin-top:15px;
|
|
box-sizing: border-box;
|
|
height:100%;
|
|
background-color:rgba(255,255,255,0.3);
|
|
border-radius: 5px;
|
|
line-height:3em;
|
|
|
|
}
|
|
.khnav_2search,
|
|
.khnav_2search iframe
|
|
{
|
|
margin:0;padding:0;
|
|
height:35px;
|
|
margin-right:25px;
|
|
}
|
|
|
|
.khnav_2search input[type="text"]
|
|
{
|
|
margin:0px;padding:0 4px;
|
|
margin-top:0.5em;
|
|
font-size:1em;
|
|
|
|
border-top-left-radius: 5px 5px;
|
|
border-bottom-left-radius: 5px 5px;
|
|
border:solid 1px #ffffff;
|
|
}
|
|
|
|
.khnav_2search input[type="submit"]
|
|
{
|
|
margin:0;padding:0 4px;
|
|
margin-left:-4px;
|
|
font-size:1em;
|
|
|
|
border-top-right-radius: 5px 5px;
|
|
border-bottom-right-radius: 5px 5px;
|
|
border:none;
|
|
|
|
background-color:#4188D3;
|
|
color:#ffffff;
|
|
|
|
font-family: "Verdana","Arial","Helvetica",sans-serif;
|
|
}
|
|
|
|
/* Si on affiche un résultat */
|
|
#khnav_search_result iframe
|
|
{
|
|
width:100%;
|
|
margin-top:-15px;
|
|
box-sizing: border-box;
|
|
height:800px;
|
|
}
|
|
|
|
#khnav_search_result iframe *
|
|
{
|
|
background-color:rgba(255,255,255,0);
|
|
}
|
|
|
|
|
|
/*******************************/ |