]> Shamusworld >> Repos - ardour-manual/blobdiff - source/css/app.css
update colors
[ardour-manual] / source / css / app.css
index d6833047e0a07f1e1a33e2c76861825c59c34cc9..0809c645d06251d5394aada0d93534da1d6f5e5f 100644 (file)
@@ -1,5 +1,5 @@
 #tree {
-  background-color: #eee;
+  background-color: #212A30;
   height: 100%;
   overflow: scroll;
   position: fixed;
@@ -75,7 +75,7 @@
 #tree a {
     display: inline !important;
     font-weight: normal; 
-    color: #666;
+    color: #E4E4E4;
     border-bottom: 1px solid transparent;
     padding-bottom: 2px;
 }
@@ -87,8 +87,8 @@
 
 #tree .active > a {
     display: inline;
-    color: #000;
-    border-bottom: 1px solid #555;
+    color: #da0808;
+    border-bottom: 1px solid #FFF;
 
 }
 
 
 #content dl
 {
-    float: left;
-    width: 100%;
+    float:none;
+    clear:both;
+    width:100%;
     margin: 1em 0;
     padding: 0;
 }
+
+#content dl:after {
+    content:' ';
+    display:block;
+    clear:both;
+}
     
 #content dt
 {
 {
     clear: left;
     float: left;
-    width: 30%;
+    width: 65%;
     margin: 0;
     padding: 0px;
     font-size: 100%;
 #content .bindings dd
 {
     float: left;
-    width: 65%;
+    width: 30%;
     margin: 0;
     padding: 0px;
     font-size: 110%;
@@ -269,30 +276,34 @@ kbd {
     color:#000000;
     padding:1px 2px;
     white-space:nowrap;
+    text-transform:capitalize;
 }
 
-kbd.input,kbd.lincmd,kbd.maccmd,kbd.wincmd {
+kbd.input,kbd.cmd,kbd.osc {
     font-family:mono;
     border-width:0;
+    text-transform:none;
+
 }
 
-kbd.lincmd,kbd.maccmd,kbd.wincmd {
+kbd.cmd {
     display:block;
     width:100%;
     margin-bottom:1ex;
+    text-transform:none;
 }
 
-kbd.lincmd:before {
+kbd.cmd.lin:before {
     content: 'user@linux:~ ';
     color:#999999;
 }
 
-kbd.maccmd:before {
+kbd.cmd.mac:before {
     content: 'MacBook:~/Desktop User\$ ';
     color:#999999;
 }
 
-kbd.wincmd:before {
+kbd.cmd.win:before {
     content: 'C:\\Users\\myAccount> ';
     color:#999999;
 }
@@ -300,28 +311,37 @@ kbd.wincmd:before {
 kbd.mouse {
     -moz-border-radius:10px;
     border-radius:10px;
-    border-width:3px;
 }
 
+/*
+.mouse:after {
+    position:relative;
+    top:-1em;
+    left:-1em;
+    content:url('/images/mouse-tail.png');
+}
+*/
+
 kbd.menu,kbd.option,kbd.optoff {
     border:none;
     background-color:transparent;
     font-weight:bold;
-    font-size:80%;
     font-stretch:extra-condensed;
     white-space:normal;
 }
 
 kbd.option:after,kbd.optoff:after {
-    content:'x';
     font-family:mono;
     font-weight:lighter;
     text-align:center;
     border:solid 1px black;
-    -moz-border-radius:10px;
-    border-radius:10px;
     margin-left:0.3em;
-    margin-right:0.5em;
+}
+kbd.option:after {
+    content:'X';
+
+}
+kbd.osc {
 }
 kbd.optoff:after {
     content:'    ';
@@ -355,8 +375,8 @@ samp {
     font-style:italic;
     color:#333333;
     background-color:transparent;
-    margin-left: 1em;
-    margin-right: 1em;
+    margin-left: 1ex;
+    margin-right: 1ex;
 }
 
 samp:before {
@@ -385,27 +405,31 @@ samp:after {
     font-style: normal;
 }
 
-#content .right {
+#content img.right {
     margin: 0 0 1em 1em;
     float:right;
+    clear:right;
 }
 
-#content .left {
+#content img.left {
     margin:0 1em 1em 0;
     float:left;
+    clear:left;
 }
 
-#content .note,.warning {
+#content .note,.warning,.fixme {
     min-height: 20px;
     padding: 19px;
     margin-bottom: 20px;
-    border: 1px solid 
+    border-style: solid;
+    border-width: 1px 1px 1px 8px; 
     -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
             border-radius: 4px;
     -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
             box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+
 }
 
 #content .note {
@@ -414,69 +438,77 @@ samp:after {
 }
 
 #content .warning {
-    border-color: #990000;
+    border-color: #995555;
     background-color: #ffeeee;
 }
 
+#content .fixme {
+    border-color: #999944;
+    background-color: #f0f0e0;
+    font-weight:bold;
+}
+
+.fixme:before {
+    content:'FIXME: ';
+    font-style: italic;
+    font-size:200%;
+}
+
+
 
 
 .mod1:before {
     content: "Ctrl ";
 }
-
 .mod2:before {
     content: "Alt ";
 }
-
 .mod3:before {
     content: "Shift ";
 }
-
 .mod4:before {
     content: "Win ";
 }
-
 .mod12:before {
     content: "Ctrl Alt ";
 }
-
 .mod13:before {
-    content: "Ctrl Shift";
+    content: "Ctrl Shift ";
 }
-
 .mod14:before {
     content: "Ctrl Win ";
 }
+.mod23:before {
+    content: "Alt Shift ";
+}
+.kp:before {
+    content: "Keypad ";
+}
 
 .mac .mod1:before {
     content: "Cmd ";
 }
-
 .mac .mod2:before {
     content: "Ctrl ";
 }
-
 .mac .mod3:before {
     content: "Shift ";
 }
-
 .mac .mod4:before {
     content: "Opt ";
 }
-
 .mac .mod12:before {
     content: "Cmd Ctrl ";
 }
-
 .mac .mod13:before {
     content: "Cmd Shift ";
 }
-
 .mac .mod14:before {
     content: "Cmd Opt ";
 }
-
-
+.mac .mod23:before {
+    content: "Ctrl Shift ";
+}
 
 #gs_tti0 {
 
@@ -485,7 +517,18 @@ samp:after {
 
 }
 
-
+@media (max-width: 800px) {
+  #tree {
+    position: relative;
+    height: 250px;
+    width: 100%;
+    margin-top: 20px;
+  }
+  #content {
+    padding-left: 20px;
+    margin-top: 0px;
+  }
+}