Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/gohugoioTheme2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/components/code.css')
-rw-r--r--assets/css/components/code.css118
1 files changed, 118 insertions, 0 deletions
diff --git a/assets/css/components/code.css b/assets/css/components/code.css
new file mode 100644
index 0000000..efec348
--- /dev/null
+++ b/assets/css/components/code.css
@@ -0,0 +1,118 @@
+.highlight {
+ background-color: #f3f4f4;
+}
+
+.dark .highlight {
+ background-color: #000;
+}
+
+.chroma .lntable pre {
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+.chroma .lntable pre code {
+ padding: 0;
+ margin: 0;
+}
+
+pre,
+.pre {
+ overflow-x: auto;
+ overflow-y: hidden;
+ overflow: scroll;
+}
+
+.code-toggle pre,
+.code-toggle .chroma {
+ border: none;
+ margin: 0;
+}
+
+code {
+ padding: 0.2em;
+ margin: 0;
+ font-size: 85%;
+ border-radius: 3px;
+}
+
+pre code {
+ display: block;
+ padding: 1.5em 1.5em;
+ font-size: 0.875rem;
+ line-height: 2;
+ overflow-x: auto;
+}
+
+pre {
+ background-color: inherit;
+ color: #333;
+ white-space: pre;
+ hyphens: none;
+ position: relative;
+ border-width: 1px;
+ border-color: #ccc;
+ border-style: solid;
+}
+
+.dark pre {
+ border-color: #000;
+}
+
+/* The Pygments highlighter comes with its own styles. */
+.highlight pre {
+ background-color: inherit;
+ color: inherit;
+ padding: 0.5em;
+ font-size: 0.875rem;
+}
+
+/*We are adding the copy button content here so we can change it with javascript. See the "Clipboard scripts"*/
+.copy:after {
+ content: "Copy";
+}
+.copied:after {
+ content: "Copied";
+}
+
+@media (--breakpoint-large) {
+ .full-width,
+ pre.expand:hover {
+ /*width: 100vw;
+ position: relative;
+ left: 50%;
+ right: 50%;
+ margin-left: -50vw;
+ margin-right: -50vw;*/
+ /*width: 60vw;*/
+ /*position: relative;
+ left: 50%;
+ right: 50%;*/
+ /*margin-left: -30vw;*/
+ margin-right: -30vw;
+ max-width: 100vw;
+ }
+}
+
+.code-block .line-numbers-rows {
+ background: #2f3a46;
+ border: none;
+ bottom: -50px;
+ color: #98a4b3;
+ left: -178px;
+ padding: 50px 0;
+ top: -50px;
+ width: 138px;
+}
+
+.code-block .line-numbers-rows > span:before {
+ color: inherit;
+ padding-right: 30px;
+}
+
+
+.goat {
+ background-color: #f3f4f4;
+ overflow: hidden;
+} \ No newline at end of file