ffmap-backend/html/force.css

181 lines
2.9 KiB
CSS
Raw Normal View History

#chart, #chart svg {
display: block;
vertical-align: middle;
2012-02-17 02:09:21 +01:00
}
2012-06-03 14:31:46 +02:00
#chart {
2012-06-03 17:17:48 +02:00
position: relative;
2012-06-03 14:31:46 +02:00
}
2012-06-03 15:28:34 +02:00
2012-06-04 18:23:39 +02:00
.node.marked ellipse {
stroke: #C83771 !important;
stroke-width: 5px;
}
.link {
stroke-opacity: 0.8;
}
.faded {
stroke-opacity: 0.02;
fill-opacity: 0.1;
}
2012-06-03 15:28:34 +02:00
.node.highlight ellipse {
fill: #FFF0B3;
}
2012-06-03 17:17:48 +02:00
2012-06-08 03:26:38 +02:00
#nodeinfo {
2012-06-03 17:17:48 +02:00
position: absolute;
background: #fff;
border: 1px solid #ddd;
padding: 0.5em;
font-family: arial, helvatica;
}
2012-06-03 18:57:36 +02:00
#nodeinfo {
top: 10px;
left: 10px;
}
2012-06-07 00:25:42 +02:00
#nodeinfo button.close {
float: right;
}
2012-06-03 18:57:36 +02:00
#controlpanel {
font-size: 10pt;
2012-06-08 03:26:38 +02:00
display: inline-block;
color: #fff;
}
#controlpanel * {
display: inline;
}
#controlpanel p {
2012-06-08 03:26:38 +02:00
margin: 0 1em;
2012-06-03 18:57:36 +02:00
}
2012-06-08 03:26:38 +02:00
#nodeinfo h1, #nodeinfo p {
2012-06-03 17:17:48 +02:00
color: #555;
}
#nodeinfo h1 {
font-size: 10pt;
margin: 0 0 0.5em;
}
2012-06-07 00:25:42 +02:00
#nodeinfo h2 {
font-size: 9pt;
}
2012-06-03 17:17:48 +02:00
#nodeinfo p {
font-size: 10pt;
margin: 0;
}
2012-06-03 18:57:36 +02:00
.btn {
color: #6e6e6e;
font: bold 12px Helvetica, Arial, sans-serif;
text-decoration: none;
2012-06-08 03:26:38 +02:00
padding: 2px 8px;
2012-06-03 18:57:36 +02:00
position: relative;
display: inline-block;
text-shadow: 0 1px 0 #fff;
-webkit-transition: border-color .218s;
-moz-transition: border .218s;
-o-transition: border-color .218s;
transition: border-color .218s;
background: #f3f3f3;
background: -webkit-gradient(linear,0% 40%,0% 70%,from(#F5F5F5),to(#F1F1F1));
background: -moz-linear-gradient(linear,0% 40%,0% 70%,from(#F5F5F5),to(#F1F1F1));
border: solid 1px #dcdcdc;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
margin-right: 10px;
}
.btn:hover {
color: #333;
border-color: #999;
-moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2) -webkit-box-shadow:0 2px 5px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.btn:active {
color: #000;
border-color: #444;
}
.btn.left {
-webkit-border-top-right-radius: 0;
-moz-border-radius-topright: 0;
border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomright: 0;
border-bottom-right-radius: 0;
margin: 0;
}
.btn.middle {
border-left: solid 1px #f3f3f3;
margin: 0;
border-left: solid 1px rgba(255, 255, 255, 0);
}
.btn.right {
-webkit-border-top-left-radius: 0;
-moz-border-radius-topleft: 0;
border-top-left-radius: 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
2012-06-08 03:26:38 +02:00
margin-left: -1px;
2012-06-03 18:57:36 +02:00
}
.btn.active {
background: #C83771;
color: #fff;
2012-06-08 03:26:38 +02:00
text-shadow: none;
2012-06-03 18:57:36 +02:00
}
2012-06-15 20:33:47 +02:00
#sidebar {
2012-06-15 20:33:47 +02:00
position: absolute;
top: 1em;
right: 1.5em;
z-index: 0;
2012-06-16 04:31:24 +02:00
font-size: 9pt;
2012-06-15 20:33:47 +02:00
}
#legend ul {
list-style: none;
}
#legend li {
margin-bottom: 0.5em;
}
#legend li svg {
margin-right: 0.5em;
display: inline;
vertical-align: center;
}
#sidebar h2 {
2012-06-15 20:33:47 +02:00
margin-top: 0;
font-size: 9pt;
}
2012-06-20 01:57:47 +02:00
footer {
position: absolute;
bottom: 0.2em;
right: 0.2em;
font-size: 8pt;
color: #777;
}
footer a {
color: #444;
}