mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* Added information panel shortcodes (#437) * Added information panel shortcodes * Fixed dark mixin * Moved mixin location to correct location Co-authored-by: Luiz F. A. de Prá <luizdepra@users.noreply.github.com> * Fix SCSS styling * Update generated files * Fix notice HTML * Fix Makefile * Rename JS file * Adsd emoji support for lang selectors * Fix notices and other things * Fix JS on template * Update example content * Update images * Update generated files * Fix netlify preview * Fix netlify preview build * Fix netlify theme path Co-authored-by: Jian Liew <jianloongliew@gmail.com>
25 lines
357 B
SCSS
25 lines
357 B
SCSS
body.rtl {
|
|
direction: rtl;
|
|
|
|
pre {
|
|
direction: ltr;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: none;
|
|
border-right: 2px solid $alt-bg-color;
|
|
padding-left: 0;
|
|
padding-right: 1.6rem;
|
|
}
|
|
|
|
table tr td:first-child,
|
|
table tr th:first-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
table tr td:last-child,
|
|
table tr th:last-child {
|
|
border-left: 0;
|
|
}
|
|
}
|