2015-10-27 11:30:56 +00:00
|
|
|
.no-select{
|
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
}
|
|
|
|
|
2015-10-31 16:25:19 +00:00
|
|
|
.hidden{ display: none !important; }
|
|
|
|
|
2015-11-19 13:08:40 +00:00
|
|
|
.center{ text-align: center; }
|
2015-10-31 16:25:19 +00:00
|
|
|
|
2015-11-19 13:42:38 +00:00
|
|
|
/* liens basiques */
|
|
|
|
a{ color: #2dcc70; }
|
|
|
|
|
|
|
|
/* @hover */
|
|
|
|
a:hover{ color: #8a8a8a; }
|
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
/* .unstressed */
|
2015-11-04 08:15:35 +00:00
|
|
|
span.unstressed{ color: #aaa; }
|
2015-11-15 20:27:29 +00:00
|
|
|
body.trHoverActivated tr:hover > td > span.unstressed{ color: #ddd; }
|
2015-11-13 23:47:11 +00:00
|
|
|
|
2015-11-04 08:15:35 +00:00
|
|
|
span.stressed{ font-weight: bold; }
|
2015-10-31 16:25:19 +00:00
|
|
|
|
2015-11-15 17:12:49 +00:00
|
|
|
thead.normal > tr > th{ font-weight: normal; }
|
2015-10-31 16:25:19 +00:00
|
|
|
|
2015-11-21 12:01:12 +00:00
|
|
|
|
|
|
|
/* input dans import/export */
|
|
|
|
div.p.center input{
|
|
|
|
margin: .2em;
|
|
|
|
padding: .8em;
|
|
|
|
border-radius: 3px;
|
2015-11-23 19:56:00 +00:00
|
|
|
border: 1px solid #989898;
|
2015-11-21 12:01:12 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 17:35:39 +00:00
|
|
|
|
2015-11-30 20:46:40 +00:00
|
|
|
.nomargin{ margin: 0 !important; }
|
|
|
|
.nopadding{ padding: 0 !important; }
|
|
|
|
|
2015-11-24 17:35:39 +00:00
|
|
|
input{ font-family: inherit; } /* même police pour les input */
|
|
|
|
|
2015-11-15 14:42:12 +00:00
|
|
|
/*************************/
|
|
|
|
/*** TITLE PERSONALISÉ ***/
|
|
|
|
/*************************/
|
|
|
|
#CONTAINER [data-info]:after{
|
|
|
|
content: attr(data-info);
|
|
|
|
/* position */
|
|
|
|
/*display: block;*/ display: none;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 4em;
|
|
|
|
padding: .3em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
2015-10-31 16:25:19 +00:00
|
|
|
|
2015-11-15 14:42:12 +00:00
|
|
|
/* background */
|
|
|
|
background-color: #233342;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #fff;
|
|
|
|
}
|
2015-10-31 16:25:19 +00:00
|
|
|
|
2015-11-15 14:42:12 +00:00
|
|
|
/* INFO SURVOL */
|
|
|
|
#CONTAINER [data-info]:hover:after{ display: block; }
|
2015-10-31 16:25:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-10-27 11:30:56 +00:00
|
|
|
/**********************/
|
|
|
|
/*** TABLEAU .BASIC ***/
|
|
|
|
/**********************/
|
|
|
|
|
2015-10-24 17:01:22 +00:00
|
|
|
/* STYLE "BASIC" DES TABLEAUX */
|
|
|
|
table.basic{
|
|
|
|
/* position */
|
2015-11-02 11:20:01 +00:00
|
|
|
width: 100%;
|
2015-11-02 12:52:16 +00:00
|
|
|
margin-bottom: 0;
|
2015-10-24 17:01:22 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px;
|
|
|
|
border-spacing: 0;
|
2015-11-02 11:20:01 +00:00
|
|
|
/*box-shadow: 0 0 4px #e3e3e3;*/
|
2015-10-24 17:01:22 +00:00
|
|
|
}
|
|
|
|
|
2015-11-02 12:52:16 +00:00
|
|
|
table.basic.margin{ margin-bottom: 1em; }
|
|
|
|
|
2015-10-24 17:01:22 +00:00
|
|
|
table.basic tr td,
|
2015-10-27 11:30:56 +00:00
|
|
|
table.basic tr th,
|
2015-10-28 17:31:58 +00:00
|
|
|
#DRAGNDROP td,
|
|
|
|
#DRAGNDROP th{
|
2015-10-24 17:01:22 +00:00
|
|
|
/* position */
|
2015-11-02 11:20:01 +00:00
|
|
|
padding: 1.5em 1.5em;
|
|
|
|
|
|
|
|
width: 25%;
|
2015-10-24 17:01:22 +00:00
|
|
|
|
|
|
|
/* border */
|
2015-11-02 11:20:01 +00:00
|
|
|
/*border-width: 1px 0 0 0;*/
|
|
|
|
/*border-style: solid;*/
|
|
|
|
/*border-color: #e0e1e3;*/
|
2015-10-24 17:01:22 +00:00
|
|
|
|
|
|
|
/* backgroud */
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #4e4e4e;
|
|
|
|
|
|
|
|
/* 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: default;
|
|
|
|
}
|
|
|
|
|
2015-11-03 11:09:14 +00:00
|
|
|
/* définition de la répartition des éléments en fonction du nombre de colonnes */
|
|
|
|
table.basic.col1 tr td, table.basic.col1 tr th{ width: 100%; }
|
|
|
|
table.basic.col2 tr td, table.basic.col2 tr th{ width: 50%; }
|
|
|
|
table.basic.col3 tr td, table.basic.col3 tr th{ width: 33%; }
|
|
|
|
table.basic.col4 tr td, table.basic.col4 tr th{ width: 25%; }
|
|
|
|
table.basic.col5 tr td, table.basic.col5 tr th{ width: 20%; }
|
2015-11-13 16:24:58 +00:00
|
|
|
table.basic.col5 tr td, table.basic.col6 tr th{ width: 16%; }
|
2015-11-03 11:09:14 +00:00
|
|
|
|
|
|
|
|
2015-11-02 11:20:01 +00:00
|
|
|
/* titre aligné à gauche */
|
|
|
|
table.basic th{ text-align: left; }
|
2015-10-24 17:01:22 +00:00
|
|
|
|
2015-11-02 11:20:01 +00:00
|
|
|
/* <thead> sans background */
|
|
|
|
table.basic thead tr th{ background-color: transparent; }
|
2015-10-24 17:01:22 +00:00
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
table.basic:nth-child(4n+0) tr > td:first-child { border-left: 10px solid #e63c54; }
|
|
|
|
table.basic:nth-child(4n+1) tr > td:first-child { border-left: 10px solid #3c73e6; }
|
|
|
|
table.basic:nth-child(4n+2) tr > td:first-child { border-left: 10px solid #e6983c; }
|
|
|
|
table.basic:nth-child(4n+3) tr > td:first-child { border-left: 10px solid #2dcc70; }
|
2015-10-24 17:01:22 +00:00
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
table.basic table.basic tr > td:first-child { border-left: 10px solid #9e9e9e; }
|
2015-11-02 11:25:25 +00:00
|
|
|
|
2015-11-03 11:09:14 +00:00
|
|
|
|
2015-11-13 16:24:58 +00:00
|
|
|
|
2015-10-24 17:01:22 +00:00
|
|
|
/* @hover */
|
2015-11-15 20:27:29 +00:00
|
|
|
body.trHoverActivated table.basic tr:hover > td{ color: #fff; }
|
2015-11-13 23:47:11 +00:00
|
|
|
|
2015-11-15 20:27:29 +00:00
|
|
|
body.trHoverActivated table.basic:nth-child(4n+0) tr:hover > td { background-color: #e63c54; }
|
|
|
|
body.trHoverActivated table.basic:nth-child(4n+1) tr:hover > td { background-color: #3c73e6; }
|
|
|
|
body.trHoverActivated table.basic:nth-child(4n+2) tr:hover > td { background-color: #e6983c; }
|
|
|
|
body.trHoverActivated table.basic:nth-child(4n+3) tr:hover > td { background-color: #2dcc70; }
|
2015-10-27 11:30:56 +00:00
|
|
|
|
2015-11-15 20:27:29 +00:00
|
|
|
body.trHoverActivated table.basic table.basic tr:hover > td { background-color: #9e9e9e; }
|
2015-10-31 12:30:01 +00:00
|
|
|
|
2015-11-13 18:33:33 +00:00
|
|
|
/* .noborder */
|
2015-11-13 23:47:11 +00:00
|
|
|
table.basic tr.noborder > td:first-child{ border-left: 1px solid transparent; }
|
2015-11-15 20:27:29 +00:00
|
|
|
body.trHoverActivated table.basic tr:hover td{ background-color: #fff; }
|
2015-11-13 18:33:33 +00:00
|
|
|
|
|
|
|
/* .transparentbg */
|
2015-11-13 23:47:11 +00:00
|
|
|
table.basic tr.transparentbg > td{ background-color: transparent; }
|
|
|
|
table.basic tr.transparentbg:hover > td{ background-color: transparent; }
|
|
|
|
table.basic tr.transparentbg > td{ color: inherit; }
|
2015-10-31 12:30:01 +00:00
|
|
|
|
|
|
|
|
2015-10-27 11:30:56 +00:00
|
|
|
/******************/
|
|
|
|
/*** PARAGRAPHS ***/
|
|
|
|
/******************/
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER section > p,
|
|
|
|
#CONTAINER section div.p{
|
2015-10-27 11:30:56 +00:00
|
|
|
/* position */
|
|
|
|
padding: 1em;
|
2015-10-30 11:52:50 +00:00
|
|
|
margin: 1em;
|
2015-10-27 11:30:56 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2015-10-30 11:52:50 +00:00
|
|
|
#CONTAINER section > p:hover{
|
|
|
|
box-shadow: 1px 1px 3px #ddd;
|
2015-10-31 16:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-03 20:59:16 +00:00
|
|
|
/*********************/
|
|
|
|
/*** LIENS BOUTONS ***/
|
2015-11-03 22:20:54 +00:00
|
|
|
/*********************/
|
|
|
|
span.link{
|
|
|
|
/* position */
|
|
|
|
padding: .3em .8em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
box-shadow: inset 0 0 1px #f5f5f5;
|
|
|
|
|
|
|
|
/* background */
|
2015-11-14 17:33:06 +00:00
|
|
|
background: #fff;
|
2015-11-03 22:20:54 +00:00
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #333;
|
2016-01-07 22:54:43 +00:00
|
|
|
}
|
2015-11-03 22:20:54 +00:00
|
|
|
|
2016-01-07 22:54:43 +00:00
|
|
|
/* désactivation du curseur pointer pour les liens sans destination */
|
|
|
|
span.link:not(.inactive){
|
2015-11-03 22:20:54 +00:00
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-01-07 22:54:43 +00:00
|
|
|
span.link:hover:not(.inactive){ color: #000; }
|
|
|
|
|
2015-11-14 17:33:06 +00:00
|
|
|
table.basic td > span.link{ background: #eee; }
|
2016-01-07 22:54:43 +00:00
|
|
|
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/*********************/
|
|
|
|
/*** SELECT/OPTION ***/
|
|
|
|
/*********************/
|
|
|
|
select{
|
|
|
|
/* position */
|
2015-11-15 17:12:49 +00:00
|
|
|
margin: 2em;
|
2015-11-06 10:13:32 +00:00
|
|
|
padding: 0 1em;
|
2015-11-19 21:35:29 +00:00
|
|
|
padding-right: 2em;
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 5px;
|
2015-11-15 17:12:49 +00:00
|
|
|
border: 1px solid #2dcc70;
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/* background */
|
2015-11-19 21:35:29 +00:00
|
|
|
background: #fff url(../src/expand.svg) center right 1em no-repeat;
|
|
|
|
background-size: auto .5em;
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/* foreground */
|
2015-11-15 17:12:49 +00:00
|
|
|
color: #2dcc70;
|
2015-11-25 23:26:50 +00:00
|
|
|
line-height: 1em; /* for -webkit */
|
2015-11-24 17:35:39 +00:00
|
|
|
font-family: inherit;
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/* select */
|
|
|
|
-webkit-appearance:none;
|
|
|
|
-moz-appearance:none;
|
|
|
|
appearance:none;
|
|
|
|
}
|
|
|
|
|
2015-11-18 08:37:36 +00:00
|
|
|
/* select grisé => selection modules existants par exemple */
|
2015-11-21 12:01:12 +00:00
|
|
|
tr.grayscale select,
|
|
|
|
select.grayscale{
|
2015-11-18 08:37:36 +00:00
|
|
|
border-color: #bdbdbd;
|
2015-11-19 22:32:54 +00:00
|
|
|
background-image: url(../src/expand@grayscale.svg);
|
2015-11-18 08:37:36 +00:00
|
|
|
color: #4e4e4e;
|
|
|
|
}
|
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
/* pour déplacement d'élève */
|
2015-11-19 21:35:29 +00:00
|
|
|
td select{ margin: -1em; padding: .5em; padding-right: 2em; }
|
2015-11-13 16:24:58 +00:00
|
|
|
|
2015-11-06 10:13:32 +00:00
|
|
|
select > option{
|
|
|
|
/* position */
|
|
|
|
padding: 1em 0;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
/* foreground */
|
2015-11-15 17:12:49 +00:00
|
|
|
color: #555;
|
2015-11-06 10:13:32 +00:00
|
|
|
text-indent: 1em;
|
|
|
|
}
|
2015-11-13 23:47:11 +00:00
|
|
|
|
|
|
|
/* pour déplacement d'élève */
|
|
|
|
td select > option{ padding: 0; }
|
|
|
|
|
|
|
|
|
2015-11-25 23:26:50 +00:00
|
|
|
/* correction padding du <select> dans les pages import/export */
|
|
|
|
div.p.center select{
|
|
|
|
line-height: 3em; /* for -webkit */
|
|
|
|
}
|
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
|
2015-11-13 16:24:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-30 20:46:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.del{
|
|
|
|
color: #f55b55;
|
|
|
|
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 */
|
|
|
|
.del:hover{ font-weight: bold; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-15 21:36:35 +00:00
|
|
|
.confirm{
|
2015-11-13 16:24:58 +00:00
|
|
|
/* position */
|
|
|
|
/*display: inline-block;*/ display: none;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 2em;
|
2015-11-13 23:47:11 +00:00
|
|
|
margin-top: -.2em;
|
|
|
|
height: 1.5em;
|
2015-11-15 20:24:15 +00:00
|
|
|
padding: 0 .7em 0 1.3em;
|
|
|
|
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #2dcc70;
|
2015-11-13 16:24:58 +00:00
|
|
|
|
|
|
|
/* background */
|
2015-11-15 20:24:15 +00:00
|
|
|
background: transparent center left .2em no-repeat;
|
|
|
|
background-size: 1em auto;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #2dcc70;
|
|
|
|
line-height: 1.5em;
|
2015-11-13 16:24:58 +00:00
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
2015-11-21 17:09:03 +00:00
|
|
|
|
|
|
|
/* scroll */
|
|
|
|
overflow: hidden;
|
2015-11-13 16:24:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-15 21:36:35 +00:00
|
|
|
|
2015-11-30 20:46:40 +00:00
|
|
|
|
2015-11-21 17:09:03 +00:00
|
|
|
.confirm [type=file]{
|
|
|
|
/* position */
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-11-15 21:36:35 +00:00
|
|
|
|
2015-11-21 12:13:40 +00:00
|
|
|
|
2015-11-15 21:36:35 +00:00
|
|
|
/* @all */
|
2015-11-18 08:37:36 +00:00
|
|
|
.confirm.all,
|
|
|
|
tr.grayscale .confirm{ margin-top: -.7em; }
|
2015-11-15 21:36:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-15 20:24:15 +00:00
|
|
|
/* @active */
|
2015-11-15 21:36:35 +00:00
|
|
|
input.active + .confirm,
|
|
|
|
select.active + .confirm,
|
|
|
|
.confirm.active{
|
2015-11-15 20:24:15 +00:00
|
|
|
display: inline-block;
|
|
|
|
background-image: url(../src/validate.svg);
|
|
|
|
}
|
2015-11-21 12:13:40 +00:00
|
|
|
.confirm.loading{
|
|
|
|
background-image: url(../src/loader.gif);
|
|
|
|
}
|
2015-11-15 12:02:34 +00:00
|
|
|
|
2015-11-19 13:08:40 +00:00
|
|
|
.confirm.center{
|
|
|
|
position: relative;
|
|
|
|
margin: 1em;
|
|
|
|
|
|
|
|
}
|
2015-11-15 21:36:35 +00:00
|
|
|
|
2015-12-01 18:01:05 +00:00
|
|
|
/* .pamp */
|
|
|
|
.confirm.pamp{
|
|
|
|
border-color: #f55b55;
|
|
|
|
color: #f55b55;
|
|
|
|
background-image: url(../src/validate@pamp.svg);
|
|
|
|
}
|
|
|
|
|
2015-11-15 20:24:15 +00:00
|
|
|
/* tr@hover */
|
2015-11-15 21:36:35 +00:00
|
|
|
body.trHoverActivated tr:hover td select.active + .confirm,
|
|
|
|
body.trHoverActivated tr:hover td input.active + .confirm,
|
|
|
|
body.trHoverActivated tr:hover td .confirm.active{
|
2015-11-15 20:24:15 +00:00
|
|
|
border-color: #fff;
|
|
|
|
background-image: url(../src/validate@hover.svg);
|
|
|
|
color: #fff;
|
|
|
|
}
|
2015-11-15 12:02:34 +00:00
|
|
|
|
|
|
|
/* saisie note */
|
2015-11-18 08:37:36 +00:00
|
|
|
.saisie_note,
|
|
|
|
tr.grayscale input{
|
2015-11-15 12:02:34 +00:00
|
|
|
/* position */
|
|
|
|
margin: -.5em;
|
|
|
|
width: 4em;
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
2015-11-30 18:58:06 +00:00
|
|
|
|
2015-11-15 12:02:34 +00:00
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #bdbdbd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @focus */
|
2015-11-18 08:37:36 +00:00
|
|
|
.saisie_note:focus,
|
|
|
|
tr.grayscale input:focus{
|
|
|
|
border-color: #999;
|
|
|
|
}
|
|
|
|
|
2015-11-30 18:58:06 +00:00
|
|
|
/* .active */
|
|
|
|
.saisie_note.active,
|
|
|
|
tr.grayscale input.active{
|
|
|
|
border-color: #2dcc70;
|
|
|
|
color: #2dcc70;
|
|
|
|
}
|
2015-11-15 12:02:34 +00:00
|
|
|
|
2015-11-15 17:12:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************/
|
|
|
|
/*** SELECTIONS DES PARTIES ***/
|
|
|
|
/******************************/
|
|
|
|
#CONTAINER > section > .partlist{
|
|
|
|
/* position */
|
|
|
|
display: table;
|
|
|
|
margin: 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-spacing: 0;
|
2015-11-19 13:08:40 +00:00
|
|
|
}
|
2015-11-15 17:12:49 +00:00
|
|
|
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER > section div.partlist{
|
|
|
|
/* position */
|
|
|
|
display: inline;
|
|
|
|
margin: 2em;
|
2015-11-15 17:12:49 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER > section > .partlist td,
|
|
|
|
#CONTAINER > section div.partlist > span{
|
2015-11-15 17:12:49 +00:00
|
|
|
/* position */
|
|
|
|
padding: .7em 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border: 1px solid #2dcc70;
|
|
|
|
border-right: 0;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
color: #2dcc70;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
/* animation */
|
|
|
|
transition: .2s ease-in-out;
|
|
|
|
-moz-transition: .2s ease-in-out;
|
|
|
|
-webkit-transition: .2s ease-in-out;
|
|
|
|
-ms-transition: .2s ease-in-out;
|
|
|
|
-o-transition: .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
2015-11-26 13:44:04 +00:00
|
|
|
#CONTAINER > section div.partlist > span{ padding: .7em; line-height: 3em; }
|
2015-11-19 13:08:40 +00:00
|
|
|
|
2015-11-15 17:12:49 +00:00
|
|
|
/* @radius */
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER > section > .partlist td:first-child,
|
|
|
|
#CONTAINER > section div.partlist > span:first-child{
|
2015-11-16 20:42:00 +00:00
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2015-11-15 17:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* @border + @radius */
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER > section > .partlist td:last-child,
|
|
|
|
#CONTAINER > section div.partlist > span:last-child{
|
2015-11-16 20:42:00 +00:00
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
2015-11-15 17:12:49 +00:00
|
|
|
border-right: 1px solid #2dcc70;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-19 13:08:40 +00:00
|
|
|
#CONTAINER > section > .partlist td.active,
|
|
|
|
#CONTAINER > section div.partlist > span.active{
|
2015-11-15 17:12:49 +00:00
|
|
|
background-color: #2dcc70;
|
|
|
|
color: #fff;
|
2015-11-20 09:32:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* CHECKBOXES (HACK) */
|
|
|
|
td input[type=checkbox]{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
td input[type=checkbox] + label{
|
|
|
|
/* position */
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin-bottom: -.25em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #7c7c7c;
|
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: transparent none center center no-repeat;
|
|
|
|
background-size: auto 100%;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @checked */
|
|
|
|
td input[type=checkbox]:checked + label{
|
|
|
|
border-color: #2dcc70;
|
|
|
|
background-image: url(../src/validate.svg);
|
2015-11-26 15:15:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* PAGE D'ACCUEIL -> tutoriel */
|
|
|
|
#CONTAINER > section[name=presentation] > p > img{
|
|
|
|
/* position */
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
margin: .5em;
|
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
|
|
|
/* foreground */
|
|
|
|
vertical-align:middle;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @hover */
|
|
|
|
#CONTAINER > section[name=presentation] > p > img:hover{
|
|
|
|
border-color: #2dcc70;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* astérisque */
|
|
|
|
span._{
|
|
|
|
color: #2dcc70;
|
2016-01-04 14:53:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* STYLE DES NOTES EN FONCTION DE LA VALEUR */
|
|
|
|
span.link.low{ /* Ne peut pas compenser */
|
|
|
|
border-color: #f55b55;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.link.med{ /* Peut pas compenser */
|
|
|
|
border-color: #f59555;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.link.hig{ /* A la moyenne */
|
|
|
|
border-color: #2dcc70;
|
2015-11-15 17:12:49 +00:00
|
|
|
}
|