diff options
author | Teddy Wing | 2018-11-08 15:00:57 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-08 15:00:57 +0100 |
commit | 4dca53fb14b4f81cb4419dd55c321819632caf9a (patch) | |
tree | 444249b458c43e76a79e70da79095fc3ab3677d3 | |
parent | ee18f278436007477e76afd348b2c821265f7cdf (diff) | |
download | dome-key-web-4dca53fb14b4f81cb4419dd55c321819632caf9a.tar.bz2 |
Add a code block style
-rw-r--r-- | assets/styles.css | 20 | ||||
-rw-r--r-- | index.html | 6 |
2 files changed, 26 insertions, 0 deletions
diff --git a/assets/styles.css b/assets/styles.css index 10bd544..b0c3d79 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -6,3 +6,23 @@ body { } header h1 { display: none; } + +.code { + font-family: "Monaco", monospace; +} + +.code-block { + padding: 12px 16px; + + border: solid 2px #8c6e6e; + border-radius: 6px; + box-shadow: inset 1px 1px 10px #402929; + + background-color: #483f3d; + color: #c9ccb4; + text-shadow: 1px 3px 5px #230f0f; +} + +.color-murky-pond { + color: #91947f; +} @@ -16,6 +16,12 @@ </header> <div class="content"> + <h2>Install</h2> + <div class="code code-block"> + <span class="color-murky-pond">$</span> brew install teddywing/DomeKey/dome-key + </div> + + DomeKey lets you customise headphone buttons </div> </body> |