mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
81 lines
1.1 KiB
CSS
81 lines
1.1 KiB
CSS
body {
|
|
background: #fcfcfe;
|
|
font-family: Helvetica;
|
|
}
|
|
|
|
.actor {
|
|
stroke: #CCCCFF;
|
|
fill: #ECECFF;
|
|
}
|
|
text.actor {
|
|
fill:black;
|
|
stroke:none;
|
|
font-family: Helvetica;
|
|
}
|
|
|
|
.actor-line {
|
|
stroke:grey;
|
|
}
|
|
|
|
.messageLine0 {
|
|
stroke-width:1.5;
|
|
stroke-dasharray: "2 2";
|
|
marker-end:"url(#arrowhead)";
|
|
stroke:black;
|
|
}
|
|
|
|
.messageLine1 {
|
|
stroke-width:1.5;
|
|
stroke-dasharray: "2 2";
|
|
stroke:black;
|
|
}
|
|
|
|
#arrowhead {
|
|
fill:black;
|
|
|
|
}
|
|
|
|
.messageText {
|
|
fill:black;
|
|
stroke:none;
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
font-size:14px;
|
|
}
|
|
|
|
.labelBox {
|
|
stroke: #CCCCFF;
|
|
fill: #ECECFF;
|
|
}
|
|
|
|
.labelText {
|
|
fill:black;
|
|
stroke:none;
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
}
|
|
|
|
.loopText {
|
|
fill:black;
|
|
stroke:none;
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
}
|
|
|
|
.loopLine {
|
|
stroke-width:2;
|
|
stroke-dasharray: "2 2";
|
|
marker-end:"url(#arrowhead)";
|
|
stroke: #CCCCFF;
|
|
}
|
|
|
|
.note {
|
|
stroke: #decc93;
|
|
stroke: #CCCCFF;
|
|
fill: #fff5ad;
|
|
}
|
|
|
|
.noteText {
|
|
fill:black;
|
|
stroke:none;
|
|
font-family: 'trebuchet ms', verdana, arial;
|
|
font-size:14px;
|
|
}
|