Skip to content

Commit fca06af

Browse files
committed
Readd unused application.css file.
1 parent 6e88ddf commit fca06af

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

css/application.css

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
body {
2+
font-size: 16px;
3+
line-height: 1.75;
4+
}
5+
6+
.container {
7+
max-width: 600px;
8+
}
9+
10+
.signature {
11+
text-align: center;
12+
}
13+
14+
svg {
15+
background-color: #FFF;
16+
cursor: default;
17+
-webkit-user-select: none;
18+
-moz-user-select: none;
19+
-ms-user-select: none;
20+
-o-user-select: none;
21+
user-select: none;
22+
}
23+
24+
svg:not(.active):not(.ctrl) {
25+
cursor: crosshair;
26+
}
27+
28+
path.link {
29+
fill: none;
30+
stroke: #000;
31+
stroke-width: 4px;
32+
cursor: default;
33+
}
34+
35+
svg:not(.active):not(.ctrl) path.link {
36+
cursor: pointer;
37+
}
38+
39+
path.link.selected {
40+
stroke-dasharray: 10,2;
41+
}
42+
43+
path.link.dragline {
44+
pointer-events: none;
45+
}
46+
47+
path.link.hidden {
48+
stroke-width: 0;
49+
}
50+
51+
circle.node {
52+
stroke-width: 1.5px;
53+
cursor: pointer;
54+
}
55+
56+
text {
57+
font: 16px sans-serif;
58+
pointer-events: none;
59+
}
60+
61+
text.degree {
62+
text-anchor: middle;
63+
font-weight: bold;
64+
}

0 commit comments

Comments
 (0)