This commit is contained in:
Yann Esposito (Yogsototh) 2021-09-06 18:29:28 +02:00
parent a91f19e72f
commit d21681a4f1
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -2,21 +2,26 @@
<head>
<title>Plan</title>
<style>
body { font-family: monospace; }
table { border: solid;}
body { font-family: Monospace;
color: hsl(218,20%, 35%);
background-color: hsl(218,20%, 95%);
font-size: 16px;
}
table { font-size: 16px; border: none; padding: 1em; border-collapse: collapse;}
img {
width:50px;
height:50px;
}
td {
width:60px;
width:130px;
height:30px;
text-align: center;
border: solid 1px;
padding: 5px;
border: solid 1px hsla(218,20%,35%,0.15);
}
th { padding-right: 1em; }
.card { border-radius: 6px;
border: solid 1px #000;
color: white;
border: solid 2px;
min-width: 1em;
height: 1em;
padding: 1px 3px 3px ;
@ -33,7 +38,7 @@
font-size: 2em;
font-weight: bold;
}
.hl { background-color: red; color: white; }
.hl { background-color: hsl(0,62%,60%); color: white; }
</style>
</head>
<body>
@ -61,19 +66,19 @@
if (savestr) {
state = JSON.parse(savestr);
} else {
state = {people: ["Ag",
"Ambrose",
"Irina",
"Kiril",
"Mark",
"Olivier",
"Rob",
"Wanderson",
"Y",
"G1",
"M",
"G2"
],
state = { people: ["Ag",
"Ambrose",
"GB",
"GE",
"Irina",
"Kiril",
"M",
"Mark",
"Olivier",
"Rob",
"Wanderson",
"Y",
],
fts: [ "SX Session",
"Bug Squashing",
"Secure Client" ],
@ -206,7 +211,7 @@
function genColor(devname) {
var h = hashcode(devname);
return "hsl(" + h + ",80%, 36%)";
return "hsl(" + h + ",90%, 80%)";
}
function createDev(devname){