blob: f8604125a3bab54d8b3f6d2ed2bf452dcf1ea0ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.node-text {
position: absolute;
width: 100px;
height: 40px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/*border: 1px solid red;*/
transform: translate(-50%, -50%);
}
.output{
font-weight: bold;
color: var(--offwhite);
}
.node-text:not(.output) {
color: transparent;
}
.node-text:not(.output):hover {
color: var(--offwhite);
}
|