79 lines
909 B
CSS
79 lines
909 B
CSS
|
/*
|
||
|
* Feuille de style personnalisée pour le site
|
||
|
*/
|
||
|
|
||
|
/** GENERAL **/
|
||
|
.no-padding
|
||
|
{
|
||
|
padding: 0 !important;
|
||
|
}
|
||
|
|
||
|
/** POPUPS ALERT **/
|
||
|
.popup-alert
|
||
|
{
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
top: 0;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
/** FOOTER **/
|
||
|
footer
|
||
|
{
|
||
|
color: #aaaaaa;
|
||
|
font-size: 0.8em;
|
||
|
padding-top: 1em;
|
||
|
padding-bottom: 0.3em;
|
||
|
}
|
||
|
|
||
|
/** GROUPES **/
|
||
|
.list-contacts
|
||
|
{
|
||
|
border: 1px solid #cccccc;
|
||
|
border-radius: 4px;
|
||
|
padding: 0.5em;
|
||
|
margin-bottom: 1em;
|
||
|
}
|
||
|
|
||
|
.delete-contact
|
||
|
{
|
||
|
color: #cccccc;
|
||
|
}
|
||
|
|
||
|
.delete-contact:hover
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
/** FORM CONNEXION **/
|
||
|
.connexion-form
|
||
|
{
|
||
|
background-color: #ffffff;
|
||
|
padding: 30px;
|
||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.connexion-form .forget-password-link
|
||
|
{
|
||
|
color: #333333;
|
||
|
}
|
||
|
|
||
|
.forget-password-link:hover
|
||
|
{
|
||
|
color: #2a6496;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.connexion-form button
|
||
|
{
|
||
|
margin-top: 0.7em;
|
||
|
}
|
||
|
|
||
|
/** MENU **/
|
||
|
.navbar
|
||
|
{
|
||
|
border: none;
|
||
|
}
|