MA0301/tools/graph-maker/graph.css

33 lines
428 B
CSS
Raw Normal View History

2021-05-17 19:04:42 +02:00
svg {
cursor: crosshair;
display: block;
margin: auto;
background-color: #FFFFFF;
}
.edge {
stroke: #888;
stroke-width: 2px;
stroke-linecap: round;
stroke-linejoin: round;
cursor: default;
}
.edge:hover,
.dragLine {
stroke: #333;
stroke-width: 3px;
}
.vertex {
cursor: pointer;
}
.vertex:hover {
stroke: #333;
opacity: 0.8;
}
.dragLine.hidden {
stroke-width: 0;
}