v5/src/app.css

47 lines
916 B
CSS
Raw Normal View History

@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@import "tailwindcss";
2025-01-29 17:35:25 -05:00
@config "../tailwind.config.ts";
2025-01-23 11:16:33 -05:00
.tree,
.tree ul {
2025-01-29 17:35:25 -05:00
position: relative;
padding-left: 0;
list-style-type: none;
line-height: var(--line-height);
2025-01-23 11:16:33 -05:00
}
.tree ul {
2025-01-29 17:35:25 -05:00
margin: 0;
2025-01-23 11:16:33 -05:00
}
.tree ul li {
2025-01-29 17:35:25 -05:00
position: relative;
padding-left: 1.5ch;
margin-left: 1.5ch;
border-left: var(--border-thickness) solid var(--text-color);
2025-01-23 11:16:33 -05:00
}
.tree ul li:before {
2025-01-29 17:35:25 -05:00
position: absolute;
display: block;
top: calc(var(--line-height) / 2);
left: 0;
content: "";
width: 1ch;
border-bottom: var(--border-thickness) solid var(--text-color);
2025-01-23 11:16:33 -05:00
}
.tree ul li:last-child {
2025-01-29 17:35:25 -05:00
border-left: none;
2025-01-23 11:16:33 -05:00
}
.tree ul li:last-child:after {
2025-01-29 17:35:25 -05:00
position: absolute;
display: block;
top: 0;
left: 0;
content: "";
height: calc(var(--line-height) / 2);
border-left: var(--border-thickness) solid var(--text-color);
2025-01-23 11:16:33 -05:00
}