2013-01-29 19:26:36 -05:00
|
|
|
#tree {
|
2015-06-07 22:17:53 -04:00
|
|
|
background-color: #212A30;
|
2013-01-29 19:26:36 -05:00
|
|
|
height: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
2013-01-31 11:32:15 -05:00
|
|
|
#tree-inner {
|
2013-03-11 15:02:24 -04:00
|
|
|
padding: 15px 20px 30px 30px;
|
2013-01-31 11:32:15 -05:00
|
|
|
}
|
|
|
|
|
2013-01-29 19:26:36 -05:00
|
|
|
#tree h1.title {
|
|
|
|
font-size: 28px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree h1.title a:hover {
|
2013-03-11 15:02:24 -04:00
|
|
|
border-bottom: none;
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#tree a {
|
2013-03-11 15:02:24 -04:00
|
|
|
font-size: 14px;
|
2013-01-29 19:26:36 -05:00
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree dd.other {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree .level-1,
|
|
|
|
#tree .parent,
|
|
|
|
#tree .child,
|
|
|
|
#tree .parent *,
|
|
|
|
#tree .child * {
|
2013-03-11 15:02:24 -04:00
|
|
|
display: inherit;
|
|
|
|
color: inherit;
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#tree dd.child-1,
|
|
|
|
#tree .child-2,
|
|
|
|
#tree .child-3,
|
|
|
|
#tree .child-4 {
|
2013-03-11 15:02:24 -04:00
|
|
|
display: none;
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-31 11:32:15 -05:00
|
|
|
#search {
|
|
|
|
height: 70px;
|
|
|
|
}
|
|
|
|
|
2013-01-29 19:26:36 -05:00
|
|
|
#content {
|
2013-01-31 11:32:15 -05:00
|
|
|
padding: 10px 30px 30px 350px;
|
2013-01-29 19:26:36 -05:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-01-31 11:32:15 -05:00
|
|
|
#content-main {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
2013-01-29 19:26:36 -05:00
|
|
|
#content p,
|
|
|
|
#content li,
|
|
|
|
#content dt,
|
|
|
|
#content dd {
|
2013-01-31 05:55:17 -05:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 28px;
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#tree a {
|
|
|
|
display: inline !important;
|
|
|
|
font-weight: normal;
|
2015-06-07 22:17:53 -04:00
|
|
|
color: #E4E4E4;
|
2013-01-29 19:26:36 -05:00
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tree .active > a {
|
|
|
|
display: inline;
|
2015-06-07 22:17:53 -04:00
|
|
|
color: #da0808;
|
|
|
|
border-bottom: 1px solid #FFF;
|
2013-01-29 19:26:36 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#content,
|
|
|
|
#tree {
|
|
|
|
font-family: Junge;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content h1,
|
|
|
|
#content h2,
|
|
|
|
#content h3,
|
|
|
|
#content h4 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content h1.title {
|
|
|
|
border-bottom: 2px solid #ccc;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content h2 {
|
|
|
|
margin: 30px 0 20px 0;
|
|
|
|
padding-bottom: 5px;
|
2013-01-31 05:55:17 -05:00
|
|
|
font-size: 22px;
|
2013-01-29 19:26:36 -05:00
|
|
|
border-bottom: 2px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content h3 {
|
|
|
|
margin: 20px 0 10px 0;
|
|
|
|
padding-bottom: 5px;
|
2013-01-31 05:55:17 -05:00
|
|
|
font-size: 20px;
|
2013-01-29 19:26:36 -05:00
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#content h4 {
|
2013-01-31 05:55:17 -05:00
|
|
|
font-size: 18px;
|
2013-01-29 19:26:36 -05:00
|
|
|
margin: 20px 0 10px 0;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content code {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content dl
|
|
|
|
{
|
2014-02-05 08:53:03 -05:00
|
|
|
float:none;
|
|
|
|
clear:both;
|
|
|
|
width:100%;
|
2013-01-29 19:26:36 -05:00
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2014-02-05 08:53:03 -05:00
|
|
|
|
|
|
|
#content dl:after {
|
|
|
|
content:' ';
|
|
|
|
display:block;
|
|
|
|
clear:both;
|
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
|
|
|
|
#content dt
|
|
|
|
{
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
|
|
|
width: 25%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content dd
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 65%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Keyboard binding layout */
|
|
|
|
#content dl.bindings
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .bindings dt
|
|
|
|
{
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
2014-02-07 19:27:13 -05:00
|
|
|
width: 65%;
|
2013-01-29 19:26:36 -05:00
|
|
|
margin: 0;
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: "Trebuchet MS", "Bitstream Vera Sans", Verdana, Arial, Helvetica, sans-serif;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .bindings dd
|
|
|
|
{
|
|
|
|
float: left;
|
2014-02-07 19:27:13 -05:00
|
|
|
width: 30%;
|
2013-01-29 19:26:36 -05:00
|
|
|
margin: 0;
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 110%;
|
|
|
|
font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#content dl.wide-table
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .wide-table dt
|
|
|
|
{
|
|
|
|
font-weight: normal;
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
|
|
|
width: 30%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content dt,
|
|
|
|
#content dd {
|
|
|
|
border-top: 2px solid #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content dt:first-child,
|
|
|
|
#content dd:nth-child(2) {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .wide-table dd
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 60%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content dl.narrower-table
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .narrower-table dt
|
|
|
|
{
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
|
|
|
width: 20%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .narrower-table dd
|
|
|
|
{
|
|
|
|
float: left;
|
|
|
|
width: 70%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2014-02-03 14:51:00 -05:00
|
|
|
kbd {
|
2013-01-29 19:26:36 -05:00
|
|
|
-moz-background-clip:border;
|
|
|
|
-moz-background-inline-policy:continuous;
|
|
|
|
-moz-background-origin:padding;
|
|
|
|
background:#EEEEEE none repeat scroll 0 0;
|
|
|
|
border-color:#CCCCCC #AAAAAA #888888 #BBBBBB;
|
|
|
|
border-style:solid;
|
2014-02-03 14:51:00 -05:00
|
|
|
border-width:2px 2px 4px 4px;
|
2013-01-29 19:26:36 -05:00
|
|
|
color:#000000;
|
2014-02-03 14:51:00 -05:00
|
|
|
padding:1px 2px;
|
2013-01-29 19:26:36 -05:00
|
|
|
white-space:nowrap;
|
2014-02-04 10:24:44 -05:00
|
|
|
text-transform:capitalize;
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
|
2014-02-05 18:59:35 -05:00
|
|
|
kbd.input,kbd.cmd,kbd.osc {
|
2014-02-03 19:33:51 -05:00
|
|
|
font-family:mono;
|
|
|
|
border-width:0;
|
2014-02-04 10:42:20 -05:00
|
|
|
text-transform:none;
|
|
|
|
|
2014-02-03 19:33:51 -05:00
|
|
|
}
|
|
|
|
|
2014-02-04 10:42:20 -05:00
|
|
|
kbd.cmd {
|
2014-02-03 19:33:51 -05:00
|
|
|
display:block;
|
|
|
|
width:100%;
|
|
|
|
margin-bottom:1ex;
|
2014-02-04 10:24:44 -05:00
|
|
|
text-transform:none;
|
2014-02-03 19:33:51 -05:00
|
|
|
}
|
|
|
|
|
2014-02-04 10:42:20 -05:00
|
|
|
kbd.cmd.lin:before {
|
2014-02-03 19:33:51 -05:00
|
|
|
content: 'user@linux:~ ';
|
|
|
|
color:#999999;
|
|
|
|
}
|
|
|
|
|
2014-02-04 10:42:20 -05:00
|
|
|
kbd.cmd.mac:before {
|
2014-02-03 19:33:51 -05:00
|
|
|
content: 'MacBook:~/Desktop User\$ ';
|
|
|
|
color:#999999;
|
|
|
|
}
|
|
|
|
|
2014-02-04 10:42:20 -05:00
|
|
|
kbd.cmd.win:before {
|
2014-02-03 19:33:51 -05:00
|
|
|
content: 'C:\\Users\\myAccount> ';
|
|
|
|
color:#999999;
|
|
|
|
}
|
|
|
|
|
2014-02-03 14:51:00 -05:00
|
|
|
kbd.mouse {
|
|
|
|
-moz-border-radius:10px;
|
|
|
|
border-radius:10px;
|
|
|
|
}
|
|
|
|
|
2014-02-04 10:24:44 -05:00
|
|
|
/*
|
|
|
|
.mouse:after {
|
|
|
|
position:relative;
|
|
|
|
top:-1em;
|
|
|
|
left:-1em;
|
|
|
|
content:url('/images/mouse-tail.png');
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2014-02-03 14:51:00 -05:00
|
|
|
kbd.menu,kbd.option,kbd.optoff {
|
|
|
|
border:none;
|
|
|
|
background-color:transparent;
|
|
|
|
font-weight:bold;
|
|
|
|
font-stretch:extra-condensed;
|
|
|
|
white-space:normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd.option:after,kbd.optoff:after {
|
|
|
|
font-family:mono;
|
|
|
|
font-weight:lighter;
|
|
|
|
text-align:center;
|
|
|
|
border:solid 1px black;
|
2014-02-03 19:53:24 -05:00
|
|
|
margin-left:0.3em;
|
2014-02-04 16:55:37 -05:00
|
|
|
}
|
|
|
|
kbd.option:after {
|
|
|
|
content:'X';
|
|
|
|
|
2014-02-05 18:59:35 -05:00
|
|
|
}
|
|
|
|
kbd.osc {
|
2014-02-03 14:51:00 -05:00
|
|
|
}
|
|
|
|
kbd.optoff:after {
|
|
|
|
content:' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
kbd.fader, kbd.knob, kbd.button {
|
|
|
|
border-color:#ccccff #aaaadd #8888bb #bbbbee;
|
|
|
|
background-color:#ddddff;
|
|
|
|
color:#000044;
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd.fader {
|
2014-02-03 19:33:51 -05:00
|
|
|
border-width: 1px 1px 9px 9px;
|
2014-02-03 14:51:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
kbd.knob {
|
|
|
|
-moz-border-radius:12px;
|
|
|
|
border-radius:12px;
|
|
|
|
border-width: 1px 1px 9px 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
kbd.button {
|
|
|
|
-moz-border-radius:8px;
|
|
|
|
border-radius:8px;
|
2014-02-03 19:33:51 -05:00
|
|
|
border-width: 1px 1px 3px 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
samp {
|
|
|
|
font-family:mono;
|
|
|
|
font-style:italic;
|
|
|
|
color:#333333;
|
|
|
|
background-color:transparent;
|
2014-02-04 10:24:44 -05:00
|
|
|
margin-left: 1ex;
|
|
|
|
margin-right: 1ex;
|
2014-02-03 19:33:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
samp:before {
|
|
|
|
content:"\BB";
|
|
|
|
}
|
|
|
|
|
|
|
|
samp:after {
|
|
|
|
content:"\AB";
|
2014-02-03 14:51:00 -05:00
|
|
|
}
|
|
|
|
|
2014-02-02 14:14:48 -05:00
|
|
|
#content td {
|
|
|
|
padding: 0 1em 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .small {
|
|
|
|
width:150px;
|
|
|
|
}
|
|
|
|
|
2014-02-03 12:24:14 -05:00
|
|
|
#subtopics ul {
|
|
|
|
font-size:20px;
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
|
2014-02-03 12:10:07 -05:00
|
|
|
#content dfn {
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2014-02-06 16:15:03 -05:00
|
|
|
#content img.right {
|
2014-02-02 14:14:48 -05:00
|
|
|
margin: 0 0 1em 1em;
|
|
|
|
float:right;
|
2014-02-06 16:15:03 -05:00
|
|
|
clear:right;
|
2014-02-02 14:14:48 -05:00
|
|
|
}
|
|
|
|
|
2014-02-06 16:15:03 -05:00
|
|
|
#content img.left {
|
2014-02-03 14:51:00 -05:00
|
|
|
margin:0 1em 1em 0;
|
2014-02-02 14:14:48 -05:00
|
|
|
float:left;
|
2014-02-06 16:15:03 -05:00
|
|
|
clear:left;
|
2014-02-02 14:14:48 -05:00
|
|
|
}
|
|
|
|
|
2016-04-15 16:38:00 -04:00
|
|
|
#content p.center {
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
2014-02-05 05:19:59 -05:00
|
|
|
#content .note,.warning,.fixme {
|
2014-02-03 12:10:07 -05:00
|
|
|
min-height: 20px;
|
|
|
|
padding: 19px;
|
|
|
|
margin-bottom: 20px;
|
2014-02-05 05:19:59 -05:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px 1px 1px 8px;
|
2014-02-03 12:10:07 -05:00
|
|
|
-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);
|
2014-02-05 05:19:59 -05:00
|
|
|
|
2014-02-03 12:10:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#content .note {
|
|
|
|
border-color: #e3e3e3;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content .warning {
|
2014-02-05 05:19:59 -05:00
|
|
|
border-color: #995555;
|
2014-02-02 14:14:48 -05:00
|
|
|
background-color: #ffeeee;
|
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
|
2014-02-05 05:19:59 -05:00
|
|
|
#content .fixme {
|
|
|
|
border-color: #999944;
|
|
|
|
background-color: #f0f0e0;
|
2014-02-05 06:05:41 -05:00
|
|
|
font-weight:bold;
|
2014-02-05 05:19:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.fixme:before {
|
|
|
|
content:'FIXME: ';
|
|
|
|
font-style: italic;
|
2014-02-05 06:05:41 -05:00
|
|
|
font-size:200%;
|
2014-02-05 05:19:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-03 14:51:00 -05:00
|
|
|
|
|
|
|
|
2013-01-29 19:26:36 -05:00
|
|
|
.mod1:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Ctrl ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mod2:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Alt ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
2013-03-22 10:40:25 -04:00
|
|
|
.mod3:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Shift ";
|
2013-03-22 10:40:25 -04:00
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
.mod4:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Win ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mod12:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Ctrl Alt ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mod13:before {
|
2014-02-04 14:06:25 -05:00
|
|
|
content: "Ctrl Shift ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mod14:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Ctrl Win ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
2014-02-06 18:04:38 -05:00
|
|
|
.mod23:before {
|
|
|
|
content: "Alt Shift ";
|
|
|
|
}
|
|
|
|
.kp:before {
|
|
|
|
content: "Keypad ";
|
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
|
|
|
|
.mac .mod1:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Cmd ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mac .mod2:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Ctrl ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
2013-03-22 10:40:25 -04:00
|
|
|
.mac .mod3:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Shift ";
|
2013-03-22 10:40:25 -04:00
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
.mac .mod4:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Opt ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mac .mod12:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Cmd Ctrl ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mac .mod13:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Cmd Shift ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
|
|
|
.mac .mod14:before {
|
2014-02-03 14:51:00 -05:00
|
|
|
content: "Cmd Opt ";
|
2013-01-29 19:26:36 -05:00
|
|
|
}
|
2014-02-06 18:04:38 -05:00
|
|
|
.mac .mod23:before {
|
|
|
|
content: "Ctrl Shift ";
|
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
|
2013-01-31 11:32:15 -05:00
|
|
|
#gs_tti0 {
|
|
|
|
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-04-23 16:33:49 -04:00
|
|
|
@media (max-width: 800px) {
|
|
|
|
#tree {
|
|
|
|
position: relative;
|
|
|
|
height: 250px;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
#content {
|
|
|
|
padding-left: 20px;
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
}
|
2013-01-29 19:26:36 -05:00
|
|
|
|
|
|
|
|
2013-01-31 05:55:17 -05:00
|
|
|
|