Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions jit/Treemap.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
.node {
color:#fff;
font-size:9px;
border:2px solid #fff;
overflow:hidden;
cursor:pointer;
/*
text-shadow:2px 2px 5px #000;
-o-text-shadow:2px 2px 5px #000;
-webkit-text-shadow:2px 2px 5px #000;
-moz-text-shadow:2px 2px 5px #000;
*/
}

/*TOOLTIPS*/
.tip {
width: 200px;
opacity:0.9;
filter:alpha(opacity=90);
font-size:12px;
font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
padding:7px;
}

#id-list {
background-color:#EEEEEE;
border:1px solid #CCCCCC;
margin:10px 20px 0 20px;
padding:5px;
text-align:left;
text-indent:2px;
}

#id-list table {
margin-top:2px;
}

#back {
margin:10px 40px;
}

.button {
display: inline-block;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
font: 14px / 100% Arial, Helvetica, sans-serif;
padding: 0.5em 1em 0.55em;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 0.5em;
-moz-border-radius: 0.5em;
border-radius: 0.5em;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.button:hover {
text-decoration: none;
}

.button:active {
position: relative;
top: 1px;
}

/* white */
.white {
color: #606060;
border: solid 1px #b7b7b7;
background: #fff;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
background: -moz-linear-gradient(top, #fff, #ededed);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

.white:hover {
background: #ededed;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
background: -moz-linear-gradient(top, #fff, #dcdcdc);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}

.white:active {
color: #999;
background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
background: -moz-linear-gradient(top, #ededed, #fff);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}

136 changes: 136 additions & 0 deletions jit/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
html, body {
margin:0;
padding:0;
font-family: "Lucida Grande", Verdana;
font-size: 0.9em;
text-align: center;
background-color:#F2F2F2;
}

input, select {
font-size:0.9em;
}

table {
margin-top:-10px;
margin-left:7px;
}

h4 {
font-size:1.1em;
text-decoration:none;
font-weight:normal;
color:#23A4FF;
}

a {
color:#23A4FF;
}

#container {
width: 1000px;
height: 500px;
margin:0 auto;
position:relative;
}

#left-container,
#right-container,
#center-container {
height: 500px;
position:absolute;
top:0;
}

#left-container {
width:200px;
color:#686c70;
text-align: left;
overflow: auto;
background-color:#fff;
background-repeat:no-repeat;
border-bottom:1px solid #ddd;
}

#left-container {
left:0;
background-position:center right;
border-left:1px solid #ddd;
}

#right-container {
right:0;
background-position:center left;
border-right:1px solid #ddd;
}

#right-container h4{
text-indent:8px;
}

#center-container {
width:800px;
left:200px;
background-color:#1a1a1a;/* dark blue? */
color:#ccc;
}

#bottom-container {
position:absolute;
width:990px;
left:0px;
top:515px;
height:auto;
border:1px solid #ccc;

padding:5px;
text-align:left;
font-size:20;
color:#686c70;
background-color:#eee;
border-bottom:1px solid #777;
}

.text {
margin: 7px;
}

#inner-details {
font-size:0.8em;
list-style:none;
margin:7px;
}

#log {
position:absolute;
top:10px;
font-size:1.0em;
font-weight:bold;
color:#23A4FF;
}


#infovis {
position:relative;
width:800px;
height:500px;
margin:auto;
overflow:hidden;
}

/*TOOLTIPS*/
.tip {
color: #111;
width: 139px;
background-color: white;
border:1px solid #ccc;
-moz-box-shadow:#555 2px 2px 8px;
-webkit-box-shadow:#555 2px 2px 8px;
-o-box-shadow:#555 2px 2px 8px;
box-shadow:#555 2px 2px 8px;
opacity:0.9;
filter:alpha(opacity=90);
font-size:10px;
font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
padding:7px;
}
Loading