2015-12-03 08:51:40 +00:00
|
|
|
*{ margin: 0; padding: 0; }
|
|
|
|
|
|
|
|
a{
|
|
|
|
/* remove-a default properties */
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
body{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: 'Open Sans', 'sans serif';
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-13 22:17:56 +00:00
|
|
|
/* BOX (POPUP) DE NOTIFICATION DE LA PAGE */
|
|
|
|
#NOTIFBAR{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
/*top: calc( 50% - 20em/2 );*/ top: calc( -100% );
|
|
|
|
left: calc( 50% - 30em/2 );
|
|
|
|
width: 30em;
|
|
|
|
height: 20em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 0 30px #aaa;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
font-size: 1em;
|
|
|
|
color: #333;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: top .5s ease-in-out;
|
|
|
|
-moz-transition: top .5s ease-in-out;
|
|
|
|
-webkit-transition: top .5s ease-in-out;
|
|
|
|
-ms-transition: top .5s ease-in-out;
|
|
|
|
-o-transition: top .5s ease-in-out;
|
|
|
|
|
|
|
|
/* z axis */
|
|
|
|
z-index: 100;
|
2015-12-14 10:01:35 +00:00
|
|
|
|
|
|
|
/* extra */
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2015-12-13 22:17:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR.active{
|
|
|
|
top: calc( 50% - 20em/2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR > div:nth-child(1){
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 55%;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px 5px 0 0 ;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: #e2747d url(../src/svg/notifications/error.svg) center center no-repeat;
|
|
|
|
background-size: 4em auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#NOTIFBAR.error > div:nth-child(1){
|
|
|
|
background-color: #e2747d;
|
|
|
|
background-image: url(../src/svg/notifications/error.svg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR.success > div:nth-child(1){
|
|
|
|
background-color: #4ccd82;
|
|
|
|
background-image: url(../src/svg/notifications/success.svg);
|
|
|
|
}
|
|
|
|
#NOTIFBAR.info > div:nth-child(1){
|
|
|
|
background-color: #e0a325;
|
|
|
|
background-image: url(../src/svg/notifications/info.svg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR > div:nth-child(2){
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 55%;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 45%;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 0 0 5px 5px;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR h3{ margin-top: 1em; }
|
|
|
|
|
|
|
|
#NOTIFBAR input[type=button]{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding: .7em 2.5em;
|
|
|
|
padding-left: 3em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5em;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: #e2747d url(../src/svg/notifications/close.svg) left 1.5em center no-repeat;
|
|
|
|
background-size: auto 1em;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #fff;
|
|
|
|
font-size: .9em;
|
|
|
|
letter-spacing: .1em;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: transform .2s ease-in-out;
|
|
|
|
-moz-transition: transform .2s ease-in-out;
|
|
|
|
-webkit-transition: transform .2s ease-in-out;
|
|
|
|
-ms-transition: transform .2s ease-in-out;
|
|
|
|
-o-transition: transform .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#NOTIFBAR.error input[type=button]{
|
|
|
|
background-color: #e2747d;
|
|
|
|
}
|
|
|
|
#NOTIFBAR.success input[type=button]{
|
|
|
|
background-color: #4ccd82;
|
|
|
|
}
|
|
|
|
#NOTIFBAR.info input[type=button]{
|
|
|
|
background-color: #e0a325;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#NOTIFBAR input[type=button]:hover{
|
|
|
|
transform: scale(1.1);
|
|
|
|
-moz-transform: scale(1.1);
|
|
|
|
-webkit-transform: scale(1.1);
|
|
|
|
-ms-transform: scale(1.1);
|
|
|
|
-o-transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-03 08:51:40 +00:00
|
|
|
/* WRAPPER DE LA PAGE */
|
|
|
|
#WRAPPER{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
left: calc( 50% - 512px - 1em );
|
|
|
|
width: 1024px;
|
|
|
|
min-height: 50%;
|
|
|
|
margin: 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 1px solid #e2e2e2;
|
|
|
|
box-shadow: 0 0 5px #e2e2e2;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* MENU DE LA PAGE */
|
|
|
|
#WRAPPER > #MENU{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 225px;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-right: 1px solid #e2e2e2;
|
|
|
|
border-bottom: 1px solid #e2e2e2;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
|
2015-12-08 07:15:34 +00:00
|
|
|
|
|
|
|
/* LOGO DANS LE MENU */
|
2015-12-09 20:43:02 +00:00
|
|
|
#WRAPPER > #MENU #ICON{
|
2015-12-08 07:15:34 +00:00
|
|
|
/* position */
|
2015-12-09 20:43:02 +00:00
|
|
|
display: block;
|
2015-12-08 07:15:34 +00:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
/* background */
|
2015-12-10 08:04:08 +00:00
|
|
|
background: transparent url(../src/svg/icon.svg) center center no-repeat;
|
2015-12-08 07:15:34 +00:00
|
|
|
background-size: auto 50%;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: all .5s ease-in-out;
|
|
|
|
-moz-transition: all .5s ease-in-out;
|
|
|
|
-webkit-transition: all .5s ease-in-out;
|
|
|
|
-ms-transition: all .5s ease-in-out;
|
|
|
|
-o-transition: all .5s ease-in-out;
|
|
|
|
|
|
|
|
/* z axis */
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#WRAPPER > #MENU > #ICON:hover{
|
|
|
|
animation: shake .5s infinite alternate;
|
|
|
|
-moz-animation: shake .5s infinite alternate;
|
|
|
|
-webkit-animation: shake .5s infinite alternate;
|
|
|
|
-ms-animation: shake .5s infinite alternate;
|
|
|
|
-o-animation: shake .5s infinite alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-09 20:43:02 +00:00
|
|
|
/* LE CONTENEUR DES LIENS DU MENU */
|
|
|
|
#WRAPPER > #MENU > div{
|
|
|
|
/* position */
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
top: 100px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: calc( 100% - 100px );
|
|
|
|
|
|
|
|
/* flex properties */
|
2015-12-10 08:04:08 +00:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
2015-12-09 20:43:02 +00:00
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: #fff;
|
|
|
|
|
|
|
|
/* scroll */
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2015-12-10 08:04:08 +00:00
|
|
|
#WRAPPER{ height:500%; }
|
|
|
|
|
2015-12-09 20:43:02 +00:00
|
|
|
|
|
|
|
/* LES LIENS DU MENU */
|
|
|
|
#WRAPPER > #MENU > div > a{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: calc( 225px/1.6 - 2*1em );
|
|
|
|
height: calc( 225px/1.6 - 1em );
|
|
|
|
padding: 0 1em;
|
2015-12-10 08:04:08 +00:00
|
|
|
margin: 1em;
|
2015-12-09 20:43:02 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #004d8c;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #4a4a4a;
|
|
|
|
text-align: center;
|
|
|
|
letter-spacing: .1em;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @hover / .active */
|
|
|
|
#WRAPPER > #MENU > div > a:hover,
|
|
|
|
#WRAPPER > #MENU > div > a.active{
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @hover */
|
|
|
|
#WRAPPER > #MENU > div > a:hover{
|
|
|
|
box-shadow: 0 0 20px #eee;
|
|
|
|
|
|
|
|
transform: scale(1.1);
|
|
|
|
-moz-transform: scale(1.1);
|
|
|
|
-webkit-transform: scale(1.1);
|
|
|
|
-ms-transform: scale(1.1);
|
|
|
|
-o-transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* icones associées aux liens */
|
|
|
|
#WRAPPER > #MENU > div > a#consultations{
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/consultation.svg) center bottom 1em no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 50% auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #MENU > div > a#medecin{
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/medecin.svg) center bottom 1em no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 50% auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #MENU > div > a#patient{
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/patient.svg) center bottom 1em no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 50% auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #MENU > div > a#dashboard{
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/dashboard.svg) center bottom 1em no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 50% auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-08 07:15:34 +00:00
|
|
|
|
|
|
|
|
2015-12-03 08:51:40 +00:00
|
|
|
/*************/
|
|
|
|
/* CONTAINER */
|
|
|
|
/*************/
|
|
|
|
#WRAPPER > #CONTAINER{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
2015-12-08 22:24:22 +00:00
|
|
|
position: relative;
|
2015-12-03 08:51:40 +00:00
|
|
|
top: 0;
|
|
|
|
left: 225px;
|
|
|
|
width: calc( 100% - 225px );
|
2015-12-08 22:24:22 +00:00
|
|
|
min-height: 100%;
|
2015-12-03 08:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* FIL D'ARIANE */
|
|
|
|
#WRAPPER > #CONTAINER > #BREADCRUMB{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: calc( 100% - 2*2em - 2*.6em );
|
|
|
|
margin: 2em;
|
|
|
|
padding: .6em;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #eee;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#WRAPPER > #CONTAINER > #BREADCRUMB a:hover{
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* chevrons */
|
|
|
|
#WRAPPER > #CONTAINER > #BREADCRUMB a:before{
|
|
|
|
content: '';
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 1em;
|
|
|
|
height: .7em;
|
|
|
|
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/right-arrow.svg) center center no-repeat;
|
2015-12-03 08:51:40 +00:00
|
|
|
background-size: 40% auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* premier: maison au lien de chevron */
|
|
|
|
#WRAPPER > #CONTAINER > #BREADCRUMB a:first-child:before{
|
|
|
|
margin-right: 1em;
|
|
|
|
height: 1em;
|
2015-12-10 08:04:08 +00:00
|
|
|
background-image: url(../src/svg/home.svg);
|
2015-12-03 08:51:40 +00:00
|
|
|
background-size: auto 100%;
|
|
|
|
}
|
2015-12-03 10:49:29 +00:00
|
|
|
|
2015-12-10 10:47:17 +00:00
|
|
|
#CONTAINER > span{
|
|
|
|
margin: 1.8em;
|
2015-12-03 10:49:29 +00:00
|
|
|
|
2015-12-10 10:47:17 +00:00
|
|
|
color: #f00;
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-12-03 10:49:29 +00:00
|
|
|
|
|
|
|
/******************************/
|
|
|
|
/* ARTICLES (cadres internes) */
|
|
|
|
/******************************/
|
|
|
|
#CONTAINER > article[data-title]{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2015-12-09 12:35:43 +00:00
|
|
|
width: calc( 100% - 2*2em - 2*1px - 2*1em );
|
2015-12-03 10:49:29 +00:00
|
|
|
margin: 2em;
|
2015-12-08 07:15:34 +00:00
|
|
|
margin-bottom: 4em; /* pour séparer les <articles> */
|
2015-12-09 12:35:43 +00:00
|
|
|
padding: 1em;
|
2015-12-03 10:49:29 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 1px solid #f09108;
|
2015-12-22 23:04:57 +00:00
|
|
|
|
2015-12-03 10:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > article[data-title]:before{
|
|
|
|
content: attr(data-title);
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
margin-top: -2.5em;
|
2015-12-09 12:35:43 +00:00
|
|
|
margin-left: calc( -1px - 1em );
|
|
|
|
width: calc( 100% - .5em );
|
2015-12-03 10:49:29 +00:00
|
|
|
padding: .5em;
|
|
|
|
padding-left: 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 1px solid #f09108;
|
|
|
|
|
|
|
|
/* background */
|
2015-12-10 08:04:08 +00:00
|
|
|
background: #f09108 url(../src/svg/title-gears.svg) left .5em center no-repeat;
|
2015-12-03 10:49:29 +00:00
|
|
|
background-size: 1em auto;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* <SELECT> */
|
|
|
|
#CONTAINER > article select{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
margin: 1em;
|
|
|
|
padding: .3em;
|
|
|
|
padding-right: 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 1px solid #e5e5e5;
|
|
|
|
|
|
|
|
/* background */
|
2015-12-10 08:04:08 +00:00
|
|
|
background: #f6f4f2 url(../src/svg/down-arrow.svg) right .5em center no-repeat;
|
2015-12-03 10:49:29 +00:00
|
|
|
background-size: 1em auto;
|
|
|
|
|
|
|
|
/* <select> */
|
2015-12-03 10:56:40 +00:00
|
|
|
appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-ms-appearance: none;
|
|
|
|
-o-appearance: none;
|
2015-12-08 07:50:30 +00:00
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
2015-12-03 10:56:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* <SELECT> <OPTION> */
|
|
|
|
#CONTAINER > article select > option{
|
2015-12-08 07:15:34 +00:00
|
|
|
/* position */
|
2015-12-03 10:56:40 +00:00
|
|
|
padding: .5em;
|
2015-12-08 07:15:34 +00:00
|
|
|
|
|
|
|
/* background */
|
2015-12-03 10:56:40 +00:00
|
|
|
background: #fff;
|
|
|
|
|
2015-12-03 10:49:29 +00:00
|
|
|
appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-ms-appearance: none;
|
|
|
|
-o-appearance: none;
|
2015-12-08 07:15:34 +00:00
|
|
|
}
|
|
|
|
|
2015-12-08 08:31:51 +00:00
|
|
|
/* <SELECT>.associated */
|
2015-12-08 07:50:30 +00:00
|
|
|
#CONTAINER > article select.associated{
|
|
|
|
border-color: #f09108;
|
|
|
|
}
|
2015-12-08 07:15:34 +00:00
|
|
|
|
2015-12-08 08:31:51 +00:00
|
|
|
|
|
|
|
/* <SPAN> */
|
2015-12-08 22:24:22 +00:00
|
|
|
#CONTAINER > article > form > span{
|
2015-12-08 08:31:51 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > article select:not(.associated) ~ span.associated{
|
|
|
|
display: none; /* on cache le texte associé quand c'est pas le médecin associé */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-08 07:15:34 +00:00
|
|
|
/* <INPUT> */
|
|
|
|
#CONTAINER > article input{
|
|
|
|
/* position */
|
2015-12-08 22:24:22 +00:00
|
|
|
display: inline-block;
|
2015-12-08 07:15:34 +00:00
|
|
|
position: relative;
|
|
|
|
margin: 1em;
|
|
|
|
padding: .7em;
|
2015-12-10 09:56:35 +00:00
|
|
|
padding-right: 3em;
|
2015-12-08 07:15:34 +00:00
|
|
|
|
|
|
|
/* border */
|
2015-12-08 08:31:51 +00:00
|
|
|
border: 1px solid #e5e5e5;
|
2015-12-09 12:35:43 +00:00
|
|
|
|
|
|
|
/* background */
|
2015-12-10 08:04:08 +00:00
|
|
|
background: url(../src/svg/validated.svg) no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-position: center right 1.5em;
|
2015-12-09 12:35:43 +00:00
|
|
|
background-size: 0em auto;
|
2015-12-08 08:31:51 +00:00
|
|
|
|
|
|
|
/* animation */
|
2015-12-09 20:43:02 +00:00
|
|
|
transition: border .2s, background-size .2s;
|
|
|
|
-moz-transition: border .2s, background-size .2s;
|
|
|
|
-webkit-transition: border .2s, background-size .2s;
|
|
|
|
-ms-transition: border .2s, background-size .2s;
|
|
|
|
-o-transition: border .2s, background-size .2s;
|
2015-12-08 07:15:34 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 09:56:35 +00:00
|
|
|
/* input[type=text] padding-right */
|
|
|
|
#CONTAINER > article input[type=text]{
|
|
|
|
}
|
|
|
|
|
2015-12-08 07:15:34 +00:00
|
|
|
/* @focus */
|
|
|
|
#CONTAINER > article input:focus{
|
|
|
|
border-color: #999;
|
2015-12-08 22:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* .validated */
|
|
|
|
#CONTAINER > article input.validated{
|
|
|
|
border-color: #1cc952;
|
2015-12-09 12:35:43 +00:00
|
|
|
background-position: center right 1em;
|
|
|
|
background-size: 1em auto;
|
2015-12-09 20:43:02 +00:00
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
}
|
|
|
|
|
2015-12-09 11:28:04 +00:00
|
|
|
/* .invalid */
|
|
|
|
#CONTAINER > article input.invalid{
|
|
|
|
border-color: #ec111c;
|
2015-12-10 08:04:08 +00:00
|
|
|
background-image: url(../src/svg/invalid.svg);
|
2015-12-09 12:35:43 +00:00
|
|
|
background-position: center right 1em;
|
|
|
|
background-size: 1em auto;
|
2015-12-09 11:28:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* <span.invalid> après <input.invalid> */
|
|
|
|
#CONTAINER > article input.invalid + span.invalid{
|
|
|
|
color: #ec111c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* <span.invalid> après <input> */
|
|
|
|
#CONTAINER > article input:not(.invalid) + span.invalid{
|
|
|
|
display: none;
|
|
|
|
color: #ec111c;
|
|
|
|
}
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
|
2015-12-10 08:04:08 +00:00
|
|
|
/* CLASSES STANDARD */
|
|
|
|
.info{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2015-12-10 11:23:22 +00:00
|
|
|
#CONTAINER > article input:hover + .info,
|
2015-12-10 08:04:08 +00:00
|
|
|
#CONTAINER > article input:focus + .info{
|
|
|
|
color: #afafaf;
|
|
|
|
border-color: #afafaf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
/* <INPUT> [type=submit] */
|
|
|
|
#CONTAINER > article input[type=submit]{
|
|
|
|
/* position */
|
|
|
|
padding-left: 3em;
|
|
|
|
|
|
|
|
/* background */
|
2015-12-10 08:04:08 +00:00
|
|
|
background: white url(../src/svg/save.svg) center left 1em no-repeat;
|
2015-12-08 22:24:22 +00:00
|
|
|
background-size: 1em auto;
|
|
|
|
|
|
|
|
/* foreground */
|
2015-12-10 08:04:08 +00:00
|
|
|
color: #888;
|
2015-12-08 22:24:22 +00:00
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
2015-12-10 10:47:17 +00:00
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
|
2015-12-09 20:43:02 +00:00
|
|
|
/* animation */
|
2015-12-10 08:04:08 +00:00
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
2015-12-08 22:24:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* @hover */
|
|
|
|
#CONTAINER > article input[type=submit]:hover{
|
2015-12-10 08:04:08 +00:00
|
|
|
color: #000;
|
|
|
|
background-position: center left .75em;
|
|
|
|
background-size: 1.5em auto;
|
2015-12-08 22:24:22 +00:00
|
|
|
}
|
2015-12-09 12:35:43 +00:00
|
|
|
|
2015-12-10 08:04:08 +00:00
|
|
|
/* @active */
|
|
|
|
#CONTAINER > article input[type=submit]:active{
|
|
|
|
/* animation */
|
|
|
|
transform: scale(.95);
|
|
|
|
-moz-transform: scale(.95);
|
|
|
|
-webkit-transform: scale(.95);
|
|
|
|
-ms-transform: scale(.95);
|
|
|
|
-o-transform: scale(.95);
|
|
|
|
}
|
2015-12-09 12:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* CHECKBOX HACK */
|
2015-12-10 08:04:08 +00:00
|
|
|
input[type=radio]{ display: none !important; }
|
|
|
|
|
|
|
|
input[type=radio] + label{
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: .5em;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2015-12-09 12:35:43 +00:00
|
|
|
|
|
|
|
/* label */
|
2015-12-10 08:04:08 +00:00
|
|
|
input[type=radio] + label:before{
|
2015-12-09 12:35:43 +00:00
|
|
|
content: '';
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
margin-right: .5em;
|
|
|
|
margin-bottom: -.3em;
|
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
|
|
|
|
|
|
|
/* border */
|
2015-12-10 09:56:35 +00:00
|
|
|
border-radius: 50% / 50%;
|
2015-12-09 12:35:43 +00:00
|
|
|
border: 1px solid #f18624;
|
|
|
|
|
|
|
|
/* background */
|
2015-12-10 09:56:35 +00:00
|
|
|
background: url(../src/svg/radio.svg) center center no-repeat;
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 0% auto;
|
2015-12-09 12:35:43 +00:00
|
|
|
|
|
|
|
/* animation */
|
2015-12-09 20:43:02 +00:00
|
|
|
transition: all .5s ease-in-out;
|
|
|
|
-moz-transition: all .5s ease-in-out;
|
|
|
|
-webkit-transition: all .5s ease-in-out;
|
|
|
|
-ms-transition: all .5s ease-in-out;
|
|
|
|
-o-transition: all .5s ease-in-out;
|
|
|
|
|
|
|
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
2015-12-09 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* @active + label */
|
2015-12-10 08:04:08 +00:00
|
|
|
input[type=radio]:active + label:before{
|
2015-12-10 11:23:22 +00:00
|
|
|
transform: rotate(360deg) scale(.9);
|
|
|
|
-moz-transform: rotate(360deg) scale(.9);
|
|
|
|
-webkit-transform: rotate(360deg) scale(.9);
|
|
|
|
-ms-transform: rotate(360deg) scale(.9);
|
|
|
|
-o-transform: rotate(360deg) scale(.9);
|
2015-12-09 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* @checked + label */
|
2015-12-10 08:04:08 +00:00
|
|
|
input[type=radio]:checked + label:before{
|
2015-12-09 12:35:43 +00:00
|
|
|
/* background */
|
2015-12-09 20:43:02 +00:00
|
|
|
background-size: 50% auto;
|
|
|
|
|
|
|
|
/* animation */
|
2015-12-10 11:23:22 +00:00
|
|
|
transform: rotate(360deg) scale(1.2);
|
|
|
|
-moz-transform: rotate(360deg) scale(1.2);
|
|
|
|
-webkit-transform: rotate(360deg) scale(1.2);
|
|
|
|
-ms-transform: rotate(360deg) scale(1.2);
|
|
|
|
-o-transform: rotate(360deg) scale(1.2);
|
2015-12-09 20:43:02 +00:00
|
|
|
|
2015-12-09 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 08:04:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-22 23:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* TABLEAU DE RESULTAT DE RECHERCHE */
|
|
|
|
#CONTAINER > article table{
|
|
|
|
/* position */
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-spacing: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > article table > tbody,
|
|
|
|
#CONTAINER > article table > tbody > tr{
|
|
|
|
/* position */
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > article table td{
|
|
|
|
/* position */
|
2015-12-26 10:42:52 +00:00
|
|
|
max-width: calc( 100% / 6% );
|
2015-12-22 23:04:57 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-bottom: 1px solid #cacaca;
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > article table#searchResultMedecin td{
|
|
|
|
/* position */
|
2015-12-26 10:42:52 +00:00
|
|
|
max-width: calc( 100% / 5% );
|
2015-12-22 23:04:57 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-bottom: 1px solid #cacaca;
|
2015-12-26 10:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Suppression champ de recherche (patient/médecin/consultation) */
|
|
|
|
#CONTAINER > article .delPatient input[type=submit],
|
|
|
|
#CONTAINER > article .delMedecin input[type=submit]{
|
|
|
|
/* position */
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-image: url(../src/svg/invalid.svg);
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Modification champ de recherche (patient/médecin/consultation) */
|
2015-12-26 12:05:56 +00:00
|
|
|
|
|
|
|
#CONTAINER > article .updPatient input[type=text],
|
|
|
|
#CONTAINER > article .updMedecin input[type=text]{
|
|
|
|
width: 6em;
|
|
|
|
padding: .1em;
|
|
|
|
margin: 0 .2em;
|
|
|
|
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-26 10:42:52 +00:00
|
|
|
#CONTAINER > article .updPatient input[type=submit],
|
|
|
|
#CONTAINER > article .updMedecin input[type=submit]{
|
|
|
|
/* position */
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-image: url(../src/svg/edit.svg);
|
|
|
|
background-position: center center;
|
2015-12-26 17:21:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* CALENDRIER */
|
|
|
|
#calendar{
|
|
|
|
width: 100%;
|
|
|
|
padding: 10%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2016-01-03 15:01:38 +00:00
|
|
|
/* cases */
|
|
|
|
#calendar rect[class^="day_"]{
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar rect[class^="day_"]:hover{
|
|
|
|
fill: #f09108 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#calendar rect[class^="day_"]:hover + [class^="Textday_"]{
|
|
|
|
fill: #fff !important;
|
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Liste des rendez-vous */
|
|
|
|
.RDV{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: calc( 100% - 2*1em - 10em );
|
|
|
|
margin-bottom: .5em;
|
|
|
|
padding: 2em 1em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #c7c7c7;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
-moz-transition: all .2s ease-in-out;
|
|
|
|
-webkit-transition: all .2s ease-in-out;
|
|
|
|
-ms-transition: all .2s ease-in-out;
|
|
|
|
-o-transition: all .2s ease-in-out;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RDV:hover{
|
|
|
|
border-color: #898989;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* les champs */
|
|
|
|
.RDV > form:nth-child(1) > input{
|
|
|
|
/* position */
|
|
|
|
display: inline-block !important;
|
|
|
|
position: absolute !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
padding-right: 2em !important;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 0 !important;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #6a6a6a;
|
|
|
|
|
|
|
|
/* event */
|
|
|
|
/*pointer-events: none;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.RDV:hover > span{
|
|
|
|
/* foreground */
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* JOUR */
|
|
|
|
.RDV > form:nth-child(1) > input.jour{
|
|
|
|
top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* HEURE */
|
|
|
|
.RDV > form:nth-child(1) > input.heure{
|
|
|
|
top: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* DUREE */
|
|
|
|
.RDV > form:nth-child(1) > input.duree{
|
|
|
|
position: relative !important;
|
|
|
|
margin-left: 10em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* PATIENT */
|
|
|
|
.RDV > form:nth-child(1) > input.Patient{
|
|
|
|
margin-left: -10em !important;
|
|
|
|
top: 1em;
|
|
|
|
}
|
|
|
|
/* MEDECIN */
|
|
|
|
.RDV > form:nth-child(1) > input.Medecin{
|
|
|
|
margin-left: -10em !important;
|
|
|
|
top: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SUPPRESSION */
|
|
|
|
.RDV > form:nth-child(2){
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: calc( 100% - .5em - 1.5em );
|
|
|
|
left: calc( 100% - 2em );
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* BOUTON SUPPRESSION */
|
|
|
|
.RDV > form > input[type=submit]{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
left: calc( 100% - 4em );
|
|
|
|
top: -2em;
|
|
|
|
|
|
|
|
padding: .5em 1em !important;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 0 !important;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: transparent !important;
|
|
|
|
background-image: url(../src/svg/invalid.svg) !important;
|
|
|
|
background-position: center center !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* BOUTON MODIFICATION */
|
|
|
|
.RDV > form:nth-child(1) > input[type=submit]{
|
|
|
|
left: calc( 100% - 3em );
|
|
|
|
top: .5em;
|
|
|
|
background-image: url(../src/svg/edit.svg) !important;
|
2016-01-03 16:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Conteneur des barres de stats du Dashboard */
|
|
|
|
.StatContainer{
|
|
|
|
float: left;
|
|
|
|
margin-top: 20px;
|
|
|
|
height: 240px;
|
|
|
|
width:50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* classe pour clear après des floats */
|
|
|
|
.clear{
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar{
|
|
|
|
float: left;
|
|
|
|
width: 15%;
|
|
|
|
margin-right: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.man{
|
|
|
|
background-color: #F09108;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woman{
|
|
|
|
background-color: #E04F5F;
|
|
|
|
}
|
|
|
|
|
|
|
|
.labels{
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label{
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 15%;
|
|
|
|
margin-right: 10%;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.value{
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title{
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.8em;
|
2015-12-22 23:04:57 +00:00
|
|
|
}
|