.hovertable {
font-family: verdana,arial,sans-serif;
font-size:11px;
margin: -2px;
width: 100%;
overflow: hidden;
background: #FFF;
color: #024457;
border:2px solid #167F92;
border-radius: 10px;
border-collapse: separate;
}
.hovertable th {
background-color:#c3dde0;
border-width: 1px;
color:#024457;
padding: 8px;
border-: solid;
border-color: #a9c6c9;
}
.hovertable tr {
border: 1px solid #D9E4E6;
&:nth-child(odd) { // highlight the odd rows with a color
background-color: #EAF3F3;
}
.hovertable td {
border-width: 1px;
padding: 8px;
border-: solid;
border-color: #a9c6c9;
}
summary {
cursor: pointer;
font-size: 16px;
font-weight: bold;
text-decoration-line: underline;
content: « + »;
}
.coin {
background-color:#E4EFFF;
border:1px solid #9FC6FF;
padding:5px;
/*arrondir les coins en haut à gauche et en bas à droite*/
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
font-family: ‘Trebuchet MS’, Verdana, sans-serif;
}
C#: Les types de variables
// Les différents types de variables
public struct Coordonnees { public int x, y; public Coordonnees(int p1, int p2) { x = p1; y = p2; } } public enum joursSemaine { Lundi, Mardi, Mercredi, Jeudi, Vendredi, Samedi, Dimanche } enum groupe { Mohamed, Ali, Samira, Naji, Mouna, Lina, Wiem,Mourad} par défaut : rang de Mohamed=0, rang deAli=1, ... , rang de Mourad=7 TP_C#_enum_01 |