From a55851070167a320c35d2466b5cf04df69a177ca Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Thu, 24 Aug 2017 12:41:34 +0800 Subject: [PATCH] Simpler shortcuts --- _sass/2017/markdown/table.scss | 6 ++---- sh.md | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/_sass/2017/markdown/table.scss b/_sass/2017/markdown/table.scss index 557b9c052..ffa6db869 100644 --- a/_sass/2017/markdown/table.scss +++ b/_sass/2017/markdown/table.scss @@ -50,11 +50,9 @@ .MarkdownBody table.-shortcuts { code { font-size: 1em; - padding: 3px 8px; + padding: 5px 6px; + padding-left: 8px; // compensation background: #fafafa; - box-shadow: - 0 2px 0 rgba(0, 0, 0, 0.2), - inset 0 0 0 1px rgba(0, 0, 0, 0.05); border-radius: 3px; margin-right: 2px; letter-spacing: 0.2em; diff --git a/sh.md b/sh.md index 13fca9aa0..4b41d83d3 100644 --- a/sh.md +++ b/sh.md @@ -453,7 +453,7 @@ pwd # still in first directory python hello.py > output.txt # stdout to (file) python hello.py >> output.txt # stdout to (file), append python hello.py 2> error.log # stderr to (file) -python hello.py 2>&1 # stdout to stderr +python hello.py 2>&1 # stderr to stdout python hello.py 2>/dev/null # stderr to (null) ```