making some good progress

This commit is contained in:
Joeri Exelmans 2025-05-11 13:22:12 +02:00
parent 5f3d697866
commit e901fc3f76
15 changed files with 546 additions and 165 deletions

64
src/Type.css Normal file
View file

@ -0,0 +1,64 @@
.infix {
margin-left: 1px;
margin-right: 1px;
}
.type {
margin:1px;
display: inline-block;
}
.functionType {
border: solid 1px darkred;
background-color: bisque;
color:darkred;
}
.productType {
border: solid 1px darkblue;
background-color: aliceblue;
color:darkblue;
}
.sumType {
border: solid 1px #333;
background-color: lightyellow;
color:#333
}
.dictType {
border-radius: 5px;
border: solid 1px darkblue;
background-color: rgb(206, 232, 255);
color:darkblue
}
.setType {
border-radius: 5px;
padding-left: 2px;
padding-right: 2px;
border: solid 1px darkblue;
background-color: rgb(206, 232, 255);
color:darkblue
}
.listType {
padding-left: 2px;
padding-right: 2px;
border: solid 1px darkblue;
background-color: rgb(206, 232, 255);
color:darkblue
}
.iteratorType {
border-style: dashed;
animation: flickerAnimation 500ms steps(1) normal infinite;
}
/* Animations */
@keyframes flickerAnimation {
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}