mirror of
https://github.com/Instagram/LibCST.git
synced 2025-12-23 10:35:53 +00:00
* reuse README intro section in doc * [doc] Why LibCST? * reuse README intro section in doc * [doc] Why LibCST?
15 lines
193 B
CSS
15 lines
193 B
CSS
.toggle {
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
.toggle:after {
|
|
content: "Show Code [+]";
|
|
}
|
|
|
|
.toggle.open:before {
|
|
content: "Hide Code [-]";
|
|
}
|
|
.toggle.open:after {
|
|
content: "";
|
|
}
|