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-13 23:47:11 +00:00
|
|
|
/* .unstressed */
|
2015-11-04 08:15:35 +00:00
|
|
|
span.unstressed{ color: #aaa; }
|
2015-11-13 23:47:11 +00:00
|
|
|
tr:hover > td > span.unstressed{ color: #ddd; }
|
|
|
|
|
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-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-13 23:47:11 +00:00
|
|
|
table.basic tr:hover > td{ color: #fff; }
|
|
|
|
|
|
|
|
table.basic:nth-child(4n+0) tr:hover > td { background-color: #e63c54; }
|
|
|
|
table.basic:nth-child(4n+1) tr:hover > td { background-color: #3c73e6; }
|
|
|
|
table.basic:nth-child(4n+2) tr:hover > td { background-color: #e6983c; }
|
|
|
|
table.basic:nth-child(4n+3) tr:hover > td { background-color: #2dcc70; }
|
2015-10-27 11:30:56 +00:00
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
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-13 18:33:33 +00:00
|
|
|
table.basic tr:hover td{ background-color: #fff; }
|
|
|
|
|
|
|
|
/* .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 ***/
|
|
|
|
/******************/
|
|
|
|
#CONTAINER section > p{
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-11-14 17:33:06 +00:00
|
|
|
table.basic td > span.link{ background: #eee; }
|
2015-11-06 10:13:32 +00:00
|
|
|
span.link:hover{ color: #000; }
|
|
|
|
|
|
|
|
/*********************/
|
|
|
|
/*** 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;
|
|
|
|
|
|
|
|
/* 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 */
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
/* foreground */
|
2015-11-15 17:12:49 +00:00
|
|
|
color: #2dcc70;
|
2015-11-06 10:13:32 +00:00
|
|
|
|
|
|
|
/* select */
|
|
|
|
-webkit-appearance:none;
|
|
|
|
-moz-appearance:none;
|
|
|
|
appearance:none;
|
|
|
|
}
|
|
|
|
|
2015-11-13 23:47:11 +00:00
|
|
|
/* pour déplacement d'élève */
|
|
|
|
td select{ margin: -1em; padding: .5em; }
|
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-13 16:24:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-15 12:02:34 +00:00
|
|
|
.valider_action{
|
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;
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
2015-11-13 16:24:58 +00:00
|
|
|
|
|
|
|
/* background */
|
|
|
|
background: transparent center center no-repeat;
|
|
|
|
background-size: 90% auto;
|
|
|
|
|
|
|
|
/* extra */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-11-15 12:02:34 +00:00
|
|
|
/* bouton validation */
|
|
|
|
select.active + .valider_action{ display: inline-block; background-image: url(../src/validate.svg); }
|
|
|
|
tr:hover td select.active + .valider_action{ background-image: url(../src/validate@hover.svg); }
|
|
|
|
|
|
|
|
|
|
|
|
/* saisie note */
|
|
|
|
.saisie_note{
|
|
|
|
/* position */
|
|
|
|
margin: -.5em;
|
|
|
|
width: 4em;
|
|
|
|
padding: .5em 1em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #bdbdbd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @focus */
|
|
|
|
.saisie_note:focus{ border-color: #999; }
|
|
|
|
|
|
|
|
|
|
|
|
/* bouton validation */
|
|
|
|
input.saisie_note.active + .valider_action{ display: inline-block; background-image: url(../src/validate.svg); }
|
|
|
|
tr:hover td input.saisie_note.active + .valider_action{ background-image: url(../src/validate@hover.svg); }
|
2015-11-15 17:12:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************/
|
|
|
|
/*** SELECTIONS DES PARTIES ***/
|
|
|
|
/******************************/
|
|
|
|
#CONTAINER > section > .partlist{
|
|
|
|
/* position */
|
|
|
|
display: table;
|
|
|
|
margin: 2em;
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
border-spacing: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#CONTAINER > section > .partlist td{
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @radius */
|
|
|
|
#CONTAINER > section > .partlist td:first-child{
|
|
|
|
border-radius: 5px 0 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @border + @radius */
|
|
|
|
#CONTAINER > section > .partlist td:last-child{
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
border-right: 1px solid #2dcc70;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#CONTAINER > section > .partlist td.active{
|
|
|
|
background-color: #2dcc70;
|
|
|
|
color: #fff;
|
|
|
|
}
|