21 lines
No EOL
435 B
CSS
21 lines
No EOL
435 B
CSS
[data-toggle-content].text-toggle-hidden {
|
|
position: relative;
|
|
height: 500px;
|
|
overflow: hidden;
|
|
margin-bottom: var(--sizing-base);
|
|
}
|
|
|
|
[data-toggle-content].text-toggle-hidden::after {
|
|
position: absolute;
|
|
z-index: 1;
|
|
content: '';
|
|
top: 0;
|
|
left: 0;
|
|
box-shadow: inset 0 -120px 50px -60px var(--background-color);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
[data-toggle-button] {
|
|
margin-bottom: var(--sizing-base) !important;
|
|
} |