/**
 * Name: Laura Ruis
 * Student number: 10158006
 * Assignment: VAST Challenge 2017
 */

/* overall font size*/
* {
    font-size: 12px;
}

/* style all text elements on page */
text {
    fill: #656677;
}

/* override font sizes w3 template */
h1 {
    font-size:64px;
}
h2 {
    font-size:48px;
}
h3 {
    font-size:30px;
}
h4 {
    font-size:20px;
}
a {
    font-size: 12px;
}
h5 {
    font-size: 15px;
}

h6 {
    font-size: 15px;
}

/* style table */
#table {
    float: left;
    width: 100%;
    color: #656677;
    font-size: 12px;
}

td {
    width: 10%;
}

.details-control {
    cursor: pointer;
}

/* style slider */
#ex1Slider .slider-selection {
    background: #BABABA;
}

/* style focus area */
.focusLine {
    fill: none;
    stroke: steelblue;
    stroke-width: 0.5px;
}

/* style force directed graph */
.nodes {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 1px;
    cursor: pointer;
}

.links {
    stroke: #777;
    stroke-width: 2px;
}

/* style line chart */
.axis text {
    font: 10px sans-serif;
}
.axis line,
.axis path {
    fill: none;
    stroke: #000;
    shape-rendering: crispEdges;
}

.line {
    fill: none;
    stroke-width: 1px;
}

/* style parallel coordinates */
.background path {
    fill: none;
    stroke: #ddd;
    shape-rendering: crispEdges;
}

.foreground path {
    fill: none;
    stroke: steelblue;
    cursor: pointer;
}

.brush .extent {
    fill-opacity: .3;
    stroke: #fff;
    shape-rendering: crispEdges;
}

.axis text {
    text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff;
    cursor: move;
}
