-
Notifications
You must be signed in to change notification settings - Fork 0
/
charta.css
60 lines (50 loc) · 1.02 KB
/
charta.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Basic SVG elements
*/
#charta-vitae svg {
background-color: #eee
}
#charta-vitae svg path {
fill: none;
stroke: gray;
stroke-linecap: round;
stroke-width: 1.5px;
stroke-opacity: 0.5; }
#charta-vitae svg circle {
opacity: 0.75;
stroke: #222;
stroke-width: 1.5px; }
#charta-vitae svg text {
font: 15px charter ; }
/*
Specific SVG element types
*/
#charta-vitae svg g#links polyline.link {
stroke-width: 0.5px;
stroke: gray; }
#charta-vitae svg g#links polyline.link.causal {
stroke-width: 1.6px;
stroke: tomato;
marker-mid: url(#markerArrow); }
#charta-vitae svg g#lines path.line {
stroke-width: 4px; }
#charta-vitae svg g#lines path.line:hover {
stroke-width: 8px;}
/*
Meta elements outside the charta
*/
#charta-vitae #metabox .container {
display: flex;
flex-wrap: wrap; }
#charta-vitae #metabox .tag {
background: #eee;
margin: 5px;
padding: 5px; }
#charta-vitae #metabox .tag .name {
color: white;
mix-blend-mode: difference; }
#charta-vitae #metabox .tag:hover {
background: #6f6; }
/*
Template pages
*/