organic_ast_explorer/src/OrgAst.module.css

42 lines
621 B
CSS
Raw Normal View History

2024-01-24 02:27:12 +00:00
.OrgAst {
flex: 1;
2024-01-24 03:05:07 +00:00
background: #eeeeee;
padding: 5px;
overflow: scroll;
2024-01-24 02:27:12 +00:00
}
.OrgAstNode {
2024-01-24 03:05:07 +00:00
border: 1px solid #000000;
background: #ffffff;
2024-01-24 03:27:31 +00:00
box-shadow: 3px 3px 4px #000000;
> details {
2024-01-24 04:07:26 +00:00
border: 1px solid #000000;
margin: 5px 5px 5px 2px;
2024-01-24 03:27:31 +00:00
> summary {
cursor: pointer;
padding: 5px 2px;
}
}
2024-01-24 04:07:26 +00:00
> details[open] {
> summary {
border-width: 0 0 1px 0;
border-style: dotted;
border-color: #000000;
}
}
2024-01-24 02:27:12 +00:00
}
.OrgAstNodeType {
2024-01-24 04:07:26 +00:00
font-size: 1.5rem;
font-weight: 700;
background: #6ccff6;
padding: 3px;
}
.OrgAstChildren {
padding: 5px 5px 5px 20px;
2024-01-24 02:27:12 +00:00
}