mirror of https://gitlab.com/curben/blog
feat(css): add border to <kbd>
- inspired by https://github.com/alvaromontoro/almond.css
This commit is contained in:
parent
19e7aa66df
commit
834a75bba0
|
@ -93,7 +93,7 @@ forward-zone:
|
||||||
forward-addr: 149.112.112.112
|
forward-addr: 149.112.112.112
|
||||||
```
|
```
|
||||||
|
|
||||||
_`Ctrl + X` to quit, press `Y` to save, `Enter` to confirm._
|
<kbd>Ctrl</kbd> + <kbd>X</kbd> to quit, <kbd>Y</kbd> to save, <kbd>Enter</kbd> to confirm.
|
||||||
|
|
||||||
> With the above config, Unbound will respond to _all_ IP, including _public_ IP if exposed to internet.
|
> With the above config, Unbound will respond to _all_ IP, including _public_ IP if exposed to internet.
|
||||||
|
|
||||||
|
|
|
@ -216,6 +216,13 @@ samp {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kbd {
|
||||||
|
border: 1px solid var(--alt-bg-color);
|
||||||
|
border-radius: 3px;
|
||||||
|
/* https://github.com/alvaromontoro/almond.css */
|
||||||
|
padding: 0.125rem 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
/* set bg colour of single backtick wrap */
|
/* set bg colour of single backtick wrap */
|
||||||
p code {
|
p code {
|
||||||
background: var(--alt-bg-color);
|
background: var(--alt-bg-color);
|
||||||
|
|
|
@ -532,6 +532,13 @@ samp {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kbd {
|
||||||
|
border: 1px solid var(--alt-bg-color);
|
||||||
|
border-radius: 3px;
|
||||||
|
/* https://github.com/alvaromontoro/almond.css */
|
||||||
|
padding: 0.125rem 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
/* set bg colour of single backtick wrap */
|
/* set bg colour of single backtick wrap */
|
||||||
p code {
|
p code {
|
||||||
background: var(--alt-bg-color);
|
background: var(--alt-bg-color);
|
||||||
|
|
Loading…
Reference in New Issue