laradb

script pour établir une bdd Ãà partir d'un tsv avec différent format - retour accueil

git clone git://bebou.netlib.re/laradb
Log | Files | Refs |

style.css (1135B)


      1 :root{
      2     --fond-A:#EEE;
      3     --fond-B:white;
      4 	--noir:black;
      5 	--accent:yellow;
      6     --corps:1rem;
      7 	--interligne:1.2rem;
      8 	--largeur-bordure-cellule:1px;
      9 	--largeur:100px;
     10 }
     11 
     12 thead td:hover{background:var(--accent)}
     13 thead td{text-align:center}
     14 tr {display:flex; border-bottom:var(--largeur-bordure-cellule) solid var(--noir); 
     15 justify-content:flex-start;background:var(--fond-B)}
     16 
     17 tr:nth-of-type(2n+1):not(thead tr){
     18     background:var(--fond-A);
     19 }
     20 
     21 *{
     22 font-size:var(--corps);
     23 color:var(--noir);
     24 line-height:var(--interligne)
     25 }
     26 body {margin: 0}
     27 tr{width:4000px;padding:0 calc(var(--largeur) * .5);}
     28 td{width:400px}
     29 thead {cursor:pointer;position:sticky;top:0}
     30 .titre			{width:calc(var(--largeur) * 1)}
     31 .titre-complet	{width:calc(var(--largeur) * 4)}
     32 .periodicite	{width:calc(var(--largeur) * 2)}
     33 .debut			{width:calc(var(--largeur) * 2)}
     34 .fin 			{width:calc(var(--largeur) * 2)}
     35 .numeros		{width:calc(var(--largeur) * 1)}
     36 .format			{width:calc(var(--largeur) * 2)}
     37 .ville			{width:calc(var(--largeur) * 2)}
     38 .pays			{width:calc(var(--largeur) * 2)}
     39 .sources		{width:calc(var(--largeur) * 2)}
     40 .travaux-lies	{width:calc(var(--largeur) * 2)}