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

View file

@ -1,87 +0,0 @@
.suggest {
color: #aaa;
}
.suggestions {
position: absolute;
border: solid 1px lightgrey;
cursor: pointer;
max-height: calc(100vh - 48px);
overflow: scroll;
}
.selected {
background-color: darkseagreen;
color: white;
}
[contenteditable] {
outline: 0px solid transparent;
}
/* TYPES */
.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; }
}