File size: 716 Bytes
1d84519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.flowread-token {
    transition: font-weight 0.2s;
    font-family: inherit;
    color: inherit;
}

.flowread-highlighted {
    font-weight: 800; /* Extra bold */
    color: inherit;
}

.flowread-semi-highlighted {
    font-weight: 600;
    color: inherit;
}

/* A small toast/loading indicator */
#flowread-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #292524;
    color: #fdfbf7;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: system-ui, sans-serif;
    font-weight: bold;
    z-index: 999999;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

#flowread-toast.show {
    opacity: 1;
}