Skip to content

Instantly share code, notes, and snippets.

@tsterker
Created September 16, 2020 12:02
Show Gist options
  • Save tsterker/ae928ab2ae34e8b357aa17f3bcaa6b4d to your computer and use it in GitHub Desktop.
Save tsterker/ae928ab2ae34e8b357aa17f3bcaa6b4d to your computer and use it in GitHub Desktop.
mermaid-gannt.css
.grid .tick {
stroke: lightgrey;
opacity: 0.3;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}
#tag {
color: white;
background: #FA283D;
width: 150px;
position: absolute;
display: none;
padding:3px 6px;
margin-left: -80px;
font-size: 11px;
}
#tag:before {
border: solid transparent;
content: ' ';
height: 0;
left: 50%;
margin-left: -5px;
position: absolute;
width: 0;
border-width: 10px;
border-bottom-color: #FA283D;
top: -20px;
}
.taskText {
fill:white;
text-anchor:middle;
}
.taskTextOutsideRight {
fill:black;
text-anchor:start;
}
.taskTextOutsideLeft {
fill:black;
text-anchor:end;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment