mirror of
https://github.com/ivabus/www
synced 2024-11-22 15:35:05 +03:00
Added some styling to terminal placeholder
This commit is contained in:
parent
5157840511
commit
85b6016a92
1 changed files with 19 additions and 1 deletions
|
@ -19,7 +19,20 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="terminal"></div>
|
||||
<div class="terminal flex">
|
||||
<div class="terminal-bar dark-gray-bg"></div>
|
||||
<div class="p-5">
|
||||
<code class="lead teal">
|
||||
$ node --eval 'console.log("Hello World!")'command not found: node<br><br>
|
||||
|
||||
$ sh <(curl tea.xyz) --yes installing ~/.tea…<br><br>
|
||||
|
||||
$ node --eval 'console.log("Hello World!")'
|
||||
tea: installing nodejs.org^19
|
||||
Hello World!
|
||||
</code>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -40,6 +53,11 @@
|
|||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
.terminal-bar{
|
||||
height: 30px;
|
||||
border-radius: 10px 10px 0px 0px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<!-- Teal Impact Section -->
|
||||
|
|
Loading…
Reference in a new issue