/* Filename: graph.css
 * This file is part of the gRaDF Semantic Web browsing tool.
 * Copyright (C) 2006  Marcus Cobden
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 * (or see the file gpl.txt)
 * 
 * 	Description:
 * This file contains stylesheets for the svg content
 * 
 * 	Version information:
 * $HeadURL: svn+ssh://mc1204@svn.ugforge.ecs.soton.ac.uk/projects/grdf/code/branches/serverside/graph.css $
 * $Date: 2007-04-04 14:56:18 -0700 (Wed, 04 Apr 2007) $
 * $Author: mc1204 $
 * $Rev: 115 $
 */

@namespace "http://www.w3.org/2000/svg";

svg {
	width: 100%;
	height: 100%;
}

use {
	cursor: pointer;
}

use circle.node {
	fill: #888888;
}

use:hover circle.node{
	fill: #aa8888;
	opacity: 0.70;
}

/*circle.node + line {
	stroke: #00dddd;
	stroke-width: 3;
}

circle.node:hover + line {
	stroke: #0000dd;
}*/

line.link {
	stroke: #dd0000;
}

use[fixed=true] circle.node {
	fill: #aaff88;
}

text {
	font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-opacity:1;
	font-family:Bitstream Vera Sans;
}

rect{ fill:none; stroke: #000000; stroke-width: 1;}
