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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
Diffstat (limited to 'vendor')
-rw-r--r--vendor/assets/stylesheets/notebooklab.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/assets/stylesheets/notebooklab.css b/vendor/assets/stylesheets/notebooklab.css
new file mode 100644
index 00000000000..0caf729a17f
--- /dev/null
+++ b/vendor/assets/stylesheets/notebooklab.css
@@ -0,0 +1,27 @@
+.cell,
+.input,
+.output {
+ display: flex;
+ width: 100%;
+ margin-bottom: 10px;
+}
+
+.cell:not(.text-cell) {
+ flex-direction: column;
+}
+
+.prompt {
+ padding: 0 10px;
+ min-width: 7em;
+ font-family: monospace;
+}
+
+.cell pre {
+ margin: 0;
+ width: 100%;
+}
+
+.markdown .katex {
+ display: block;
+ text-align: center;
+}