aboutsummaryrefslogtreecommitdiff
path: root/docs/_book/gitbook/gitbook-plugin-code/plugin.css
diff options
context:
space:
mode:
authorJakob Stendahl <14180120+JakobST1n@users.noreply.github.com>2018-12-01 00:28:28 +0100
committerGitHub <noreply@github.com>2018-12-01 00:28:28 +0100
commit19df9946b438b38b9a4f3f57ad002981a1ae1eaf (patch)
treee8eb839a305502584e31e1b1a96c70406b9b6255 /docs/_book/gitbook/gitbook-plugin-code/plugin.css
parentfd7a1b51126f8b8f889807cb7d56bb3626a0e0b5 (diff)
parent7ec685de6e441af1f614bb9d18e25c047d21466b (diff)
downloadLuxcena-Neo-19df9946b438b38b9a4f3f57ad002981a1ae1eaf.tar.gz
Luxcena-Neo-19df9946b438b38b9a4f3f57ad002981a1ae1eaf.zip
Merge pull request #6 from JakobST1n/dev
Written docs, finished CLI
Diffstat (limited to 'docs/_book/gitbook/gitbook-plugin-code/plugin.css')
-rw-r--r--docs/_book/gitbook/gitbook-plugin-code/plugin.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/_book/gitbook/gitbook-plugin-code/plugin.css b/docs/_book/gitbook/gitbook-plugin-code/plugin.css
new file mode 100644
index 0000000..a68fcdc
--- /dev/null
+++ b/docs/_book/gitbook/gitbook-plugin-code/plugin.css
@@ -0,0 +1,37 @@
+#code-textarea {
+ height: 0;
+ position: fixed;
+ top: -1000px;
+ width: 0;
+}
+
+.code-wrapper {
+ position: relative;
+}
+
+.code-wrapper i {
+ color: #c1c7cd;
+ cursor: pointer;
+ font-size: 12px;
+ font-weight: bold;
+ position: absolute;
+ right: 1em;
+ top: 1em;
+}
+
+.code-wrapper pre {
+ background: #f7f8f9;
+ border-radius: 3px;
+ counter-reset: line;
+ font-size: 15px;
+}
+
+.code-wrapper pre > code > span.code-line:before {
+ counter-increment: line;
+ color: #c1c7cd;
+ content: counter(line);
+ display: inline-block;
+ font-size: 12px;
+ margin-right: 1.5em;
+ width: 1em;
+}