xml_display
Version:
A JS component to pretty-display XML data, with collapsible nodes.
38 lines (30 loc) • 439 B
CSS
@charset "utf-8";
.Utility {
color: black;
}
.NodeName {
font-weight: bold;
color: #800080;
}
.AttributeName {
font-weight: bold;
color: black;
}
.AttributeValue {
color: blue;
}
.NodeValue {
color: black;
}
.Element {
border-left-color: #00FF66;
border-left-width: thin;
border-left-style: solid;
padding-top: 0px;
}
.Clickable {
font-weight: 900;
font-size: large;
color: #800080;
cursor: pointer;
}