summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap/less/code.less
diff options
context:
space:
mode:
Diffstat (limited to 'bower_components/bootstrap/less/code.less')
-rw-r--r--bower_components/bootstrap/less/code.less55
1 files changed, 55 insertions, 0 deletions
diff --git a/bower_components/bootstrap/less/code.less b/bower_components/bootstrap/less/code.less
new file mode 100644
index 00000000..cd613256
--- /dev/null
+++ b/bower_components/bootstrap/less/code.less
@@ -0,0 +1,55 @@
+//
+// Code (inline and blocK)
+// --------------------------------------------------
+
+
+// Inline and block code styles
+code,
+pre {
+ font-family: @font-family-monospace;
+}
+
+// Inline code
+code {
+ padding: 2px 4px;
+ font-size: 90%;
+ color: @code-color;
+ background-color: @code-bg;
+ white-space: nowrap;
+ border-radius: 4px;
+}
+
+// Blocks of code
+pre {
+ display: block;
+ padding: ((@line-height-computed - 1) / 2);
+ margin: 0 0 (@line-height-computed / 2);
+ font-size: (@font-size-base - 1); // 14px to 13px
+ line-height: @line-height-base;
+ word-break: break-all;
+ word-wrap: break-word;
+ color: @gray-dark;
+ background-color: @pre-bg;
+ border: 1px solid @pre-border-color;
+ border-radius: @border-radius-base;
+
+ // Make prettyprint styles more spaced out for readability
+ &.prettyprint {
+ margin-bottom: @line-height-computed;
+ }
+
+ // Account for some code outputs that place code tags in pre tags
+ code {
+ padding: 0;
+ color: inherit;
+ white-space: pre-wrap;
+ background-color: transparent;
+ border: 0;
+ }
+}
+
+// Enable scrollable blocks of code
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll;
+}