mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-15 06:19:24 +02:00
25 lines
570 B
HTML
25 lines
570 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<script type="module" src="./viewer.js"></script>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Noto+Sans+SC&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
|
|
/>
|
|
<style>
|
|
svg {
|
|
border: 2px solid darkred;
|
|
}
|
|
.exClass2 > rect,
|
|
.exClass {
|
|
fill: greenyellow !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body></body>
|
|
</html>
|