-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82a5535
commit b67f691
Showing
22 changed files
with
643 additions
and
579 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,52 @@ | ||
.termynal-comment { | ||
color: #4a968f; | ||
font-style: italic; | ||
display: block; | ||
color: #4a968f; | ||
font-style: italic; | ||
display: block; | ||
} | ||
|
||
.termy [data-termynal] { | ||
white-space: pre-wrap; | ||
white-space: pre-wrap; | ||
} | ||
|
||
a.external-link::after { | ||
/* \00A0 is a non-breaking space | ||
/* \00A0 is a non-breaking space | ||
to make the mark be on the same line as the link | ||
*/ | ||
content: "\00A0[↪]"; | ||
content: "\00A0[↪]"; | ||
} | ||
|
||
a.internal-link::after { | ||
/* \00A0 is a non-breaking space | ||
/* \00A0 is a non-breaking space | ||
to make the mark be on the same line as the link | ||
*/ | ||
content: "\00A0↪"; | ||
content: "\00A0↪"; | ||
} | ||
|
||
.shadow { | ||
box-shadow: 5px 5px 10px #999; | ||
box-shadow: 5px 5px 10px #999; | ||
} | ||
|
||
pre { | ||
position: relative; | ||
position: relative; | ||
} | ||
|
||
.copy-code-button { | ||
position: absolute; | ||
right: 5px; | ||
top: 5px; | ||
cursor: pointer; | ||
padding: 0.5em; | ||
margin-bottom: 0.5em; | ||
background-color: rgba(247, 247, 247, 0.4); /* Light grey background with slight transparency */ | ||
border: 1px solid #dcdcdc; /* Slightly darker border for definition */ | ||
border-radius: 3px; /* Rounded corners */ | ||
font-family: monospace; /* Monospace font similar to code blocks */ | ||
font-size: 0.85em; /* Slightly smaller font size */ | ||
color: #333; /* Dark grey text for contrast */ | ||
outline: none; /* Remove outline to maintain minimal style on focus */ | ||
position: absolute; | ||
right: 5px; | ||
top: 5px; | ||
cursor: pointer; | ||
padding: 0.5em; | ||
margin-bottom: 0.5em; | ||
background-color: rgba( | ||
247, | ||
247, | ||
247, | ||
0.4 | ||
); /* Light grey background with slight transparency */ | ||
border: 1px solid #dcdcdc; /* Slightly darker border for definition */ | ||
border-radius: 3px; /* Rounded corners */ | ||
font-family: monospace; /* Monospace font similar to code blocks */ | ||
font-size: 0.85em; /* Slightly smaller font size */ | ||
color: #333; /* Dark grey text for contrast */ | ||
outline: none; /* Remove outline to maintain minimal style on focus */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,7 @@ router.invoke_route("Can you summarize this csv?") | |
``` | ||
|
||
Demo | ||
|
||
<div class="termy"> | ||
```python | ||
User: | ||
|
Oops, something went wrong.