-
Notifications
You must be signed in to change notification settings - Fork 7
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
d52f50f
commit e808069
Showing
13 changed files
with
157 additions
and
72 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
98 changes: 38 additions & 60 deletions
98
PwshSpectreConsole.Docs/src/components/TerminalPreview.astro
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
11 changes: 11 additions & 0 deletions
11
PwshSpectreConsole.Docs/src/components/frames/terminal-preview-1.html
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="spectre-panel"> | ||
<pre> | ||
😛 What's for dinner? | ||
</pre> | ||
</div> | ||
<pre class="spectre-selection"> | ||
<span class="terminal-preview-accent">> Sushi</span> | ||
Pizza | ||
Burgers | ||
| ||
<span class="text-slate-600">(Move up and down to reveal more choices)</span></pre> |
11 changes: 11 additions & 0 deletions
11
PwshSpectreConsole.Docs/src/components/frames/terminal-preview-2.html
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="spectre-panel"> | ||
<pre> | ||
😛 What's for dinner? | ||
</pre> | ||
</div> | ||
<pre class="spectre-selection"> | ||
Sushi | ||
<span class="terminal-preview-accent">> Pizza</span> | ||
Burgers | ||
| ||
<span class="text-slate-600">(Move up and down to reveal more choices)</span></pre> |
11 changes: 11 additions & 0 deletions
11
PwshSpectreConsole.Docs/src/components/frames/terminal-preview-3.html
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="spectre-panel"> | ||
<pre> | ||
😛 What's for dinner? | ||
</pre> | ||
</div> | ||
<pre class="spectre-selection"> | ||
Pizza | ||
<span class="terminal-preview-accent">> Burgers</span> | ||
Tacos | ||
| ||
<span class="text-slate-600">(Move up and down to reveal more choices)</span></pre> |
11 changes: 11 additions & 0 deletions
11
PwshSpectreConsole.Docs/src/components/frames/terminal-preview-4.html
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<div class="spectre-panel"> | ||
<pre> | ||
😛 What's for dinner? | ||
</pre> | ||
</div> | ||
<pre class="spectre-selection"> | ||
Pizza | ||
Burgers | ||
<span class="terminal-preview-accent">> Tacos</span> | ||
| ||
<span class="text-slate-600">(Move up and down to reveal more choices)</span></pre> |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
:root { | ||
--sl-sidebar-width: 28rem; | ||
--sl-content-width: 80rem; | ||
--sl-color-bg-sidebar: #020617; | ||
--sl-color-bg: #11001f; | ||
--sl-color-bg-nav: #01030e; | ||
--astro-code-color-background: transparent; | ||
--sl-color-gray-5: transparent; | ||
} | ||
|
||
.terminal-preview { | ||
@apply font-mono bg-slate-50 dark:bg-slate-950 rounded-lg; | ||
border-color: rgba(189, 83, 238, 1.0)!important; | ||
border-width: 2px!important; | ||
} | ||
|
||
.terminal-preview-accent { | ||
@apply text-purple-500; | ||
} | ||
|
||
.action.primary { | ||
@apply bg-purple-800 text-white rounded-xl; | ||
} | ||
|
||
.spectre-panel { | ||
@apply rounded-xl border-2 border-purple-500; | ||
} | ||
|
||
.spectre-panel > pre { | ||
@apply border-none; | ||
} | ||
|
||
.spectre-selection { | ||
border: none!important; | ||
} | ||
|
||
.hero { | ||
@apply pb-6; | ||
} |
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