summaryrefslogtreecommitdiffstats
path: root/css/cli-demo.css
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-11-25 06:49:47 +0000
committerEndi S. Dewata <edewata@redhat.com>2013-11-25 06:49:47 +0000
commitbf774eaa59db068accb5ef4629aad4d30cb65871 (patch)
tree8a3035c1d0e4da842c5c28de4b38e418b2d61105 /css/cli-demo.css
parent28545042084a2f4212b2d97c267a267aae47d55f (diff)
downloadcli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.tar.gz
cli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.tar.xz
cli-demo-bf774eaa59db068accb5ef4629aad4d30cb65871.zip
Renamed to CLI Demo.
Diffstat (limited to 'css/cli-demo.css')
-rw-r--r--css/cli-demo.css83
1 files changed, 83 insertions, 0 deletions
diff --git a/css/cli-demo.css b/css/cli-demo.css
new file mode 100644
index 0000000..38ac595
--- /dev/null
+++ b/css/cli-demo.css
@@ -0,0 +1,83 @@
+.cli-demo {
+ position: relative;
+ width: 700px;
+ min-height: 300px;
+ padding: 5px;
+ margin: 1em 0px;
+
+ font-family: courier, fixed;
+ font-size: 13px;
+ white-space: pre-wrap;
+
+ border: 1px solid gray;
+ border-radius: 8px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+
+ background: black;
+ color: lightgray;
+}
+
+.cli-demo-console {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ right: 0px;
+ bottom: 40px;
+
+ padding: 5px;
+ overflow: auto;
+}
+
+.cli-demo-content {
+}
+
+.cli-demo-caret {
+ background: lightgray;
+}
+
+.cli-demo-control {
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ bottom: 0px;
+ height: 30px;
+
+ padding: 5px;
+ background: gray;
+ color: black;
+}
+
+.cli-demo-button {
+ margin: 1px 2px;
+ padding: 5px 10px;
+ vertical-align: bottom;
+
+ border: 1px solid white;
+ border-radius: 5px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+
+ background: dimgray;
+ color: white;
+}
+
+.cli-demo-button:hover {
+ background: lightgray;
+ color: black;
+}
+
+.cli-demo-input {
+ font-weight: bold;
+ color: white;
+}
+
+.cli-demo-input:hover {
+ background: #303233;
+}
+
+.cli-demo-output:hover {
+ background: #303233;
+}