forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
92 lines (75 loc) · 1.79 KB
/
index.css
File metadata and controls
92 lines (75 loc) · 1.79 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import 'tailwindcss';
@plugin "daisyui" {
themes: light --default;
}
/*
* Theme colors are defined in src/theme/colors.ts (TypeScript)
* CSS styles below use hardcoded hex values matching that file.
*/
#root {
height: 100vh;
}
body {
margin: 0;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
/* ReactFlow style overrides */
.react-flow__background {
background-color: #ffffff;
}
.react-flow__edge-labels {
/* stylelint-disable-next-line declaration-no-important -- edge labels must appear above nodes */
z-index: 60 !important;
}
.react-flow__node-group {
z-index: -1;
}
.react-flow__node-custom {
/* z-index is dynamically set via JS for hover behavior - don't use !important */
}
.react-flow__controls {
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
border-radius: 8px;
}
.react-flow__controls-button {
background: #ffffff;
border-color: #e2e8f0;
color: #64748b;
}
.react-flow__controls-button:hover {
background: #f1f5f9;
}
.react-flow__controls-button svg {
fill: #64748b;
}
.react-flow__minimap {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
}
.react-flow__attribution {
background: transparent;
}
.react-flow__attribution a {
color: #94a3b8;
}
/* ADR marker styles */
.marker-negative::before {
content: '- ';
font-size: 100%;
font-weight: bold;
color: #dc2626;
}
.marker-positive::before {
content: '+ ';
font-size: 100%;
font-weight: bold;
color: #16a34a;
}