mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-09-02 02:15:41 -04:00
23 lines
443 B
CSS
Executable File
23 lines
443 B
CSS
Executable File
/* Tabcycler list */
|
|
.tabswitcher.list {
|
|
grid-template-columns: 1fr;
|
|
grid-gap: unset;
|
|
width: 36em;
|
|
max-height: 80vh;
|
|
}
|
|
|
|
/* Tabcycler hide image */
|
|
.tabswitcher.list img.visual-list-preview {
|
|
display: none;
|
|
}
|
|
|
|
/* Tabcycler text drop-shadow */
|
|
.tabswitcher.list .listed-tabs li.visual-list {
|
|
text-shadow: 1px 1px black, 0 0 2px black;
|
|
}
|
|
|
|
/* Tabcycler hide scrollbar */
|
|
.tabswitcher.list .listed-tabs::-webkit-scrollbar {
|
|
display: none;
|
|
}
|