summaryrefslogtreecommitdiffstats
path: root/docs/less/code.less
diff options
context:
space:
mode:
authorDavid Stutz <davidstutz@web.de>2014-10-19 22:27:27 +0200
committerDavid Stutz <davidstutz@web.de>2014-10-19 22:27:27 +0200
commit188603e9075b2a6cf3cf5d0a500cee964c77801d (patch)
tree4af4ad26871f3841e5169f87222a05b22cd8615d /docs/less/code.less
parent9a58ab3ba51514dfb3d350933c5174a1628ab8e1 (diff)
downloadbootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.zip
bootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.tar.gz
bootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.tar.bz2
Added documentation, updated Password Score, changed folder structure, added bower.json.
Diffstat (limited to 'docs/less/code.less')
-rw-r--r--docs/less/code.less56
1 files changed, 56 insertions, 0 deletions
diff --git a/docs/less/code.less b/docs/less/code.less
new file mode 100644
index 0000000..d6661d2
--- /dev/null
+++ b/docs/less/code.less
@@ -0,0 +1,56 @@
+//
+// 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: @border-radius-base;
+}
+
+// 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: @pre-color;
+ 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;
+ font-size: inherit;
+ color: inherit;
+ white-space: pre-wrap;
+ background-color: transparent;
+ border: 0;
+ }
+}
+
+// Enable scrollable blocks of code
+.pre-scrollable {
+ max-height: @pre-scrollable-max-height;
+ overflow-y: scroll;
+}