File size: 1,320 Bytes
d712cef | 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | .focus-container {
position: relative;
display: flex;
gap: 0.4em;
justify-content: center;
align-items: center;
flex-wrap: wrap;
outline: none;
user-select: none;
pointer-events: none; /* never block clicks on elements below */
}
.focus-word {
position: relative;
font-size: 1.1rem; /* was 3rem — too large, was covering the whole page */
font-weight: 900;
cursor: default;
pointer-events: none; /* don't intercept mouse events */
transition:
filter 0.3s ease,
color 0.3s ease;
outline: none;
user-select: none;
}
.focus-word.active {
filter: blur(0);
}
.focus-frame {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
box-sizing: content-box;
border: none;
}
.corner {
position: absolute;
width: 1rem;
height: 1rem;
border: 3px solid var(--border-color, #fff);
filter: drop-shadow(0px 0px 4px var(--border-color, #fff));
border-radius: 3px;
transition: none;
}
.top-left {
top: -10px;
left: -10px;
border-right: none;
border-bottom: none;
}
.top-right {
top: -10px;
right: -10px;
border-left: none;
border-bottom: none;
}
.bottom-left {
bottom: -10px;
left: -10px;
border-right: none;
border-top: none;
}
.bottom-right {
bottom: -10px;
right: -10px;
border-left: none;
border-top: none;
}
|