34 lines
305 B
CSS
34 lines
305 B
CSS
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
[onClick] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.records-tree {
|
|
|
|
.top {
|
|
font-weight: bold;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
&>.top {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
.record {
|
|
display: none;
|
|
color: #444;
|
|
}
|
|
}
|