57 lines
617 B
CSS
57 lines
617 B
CSS
.listview-add
|
|
{
|
|
/*
|
|
text-transform: capitalize;
|
|
*/
|
|
}
|
|
|
|
.listview-add-hidden
|
|
{
|
|
display: none;
|
|
}
|
|
|
|
.listview-entries
|
|
{
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.listview-entry
|
|
{
|
|
background: hsl(0,0%,25%);
|
|
padding: 12px;
|
|
border-radius: 4px;
|
|
margin: 12px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.listview-entry-name
|
|
{
|
|
font-weight: bold;
|
|
font-size: 1.25em;
|
|
}
|
|
|
|
.listview-entry-label
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
|
|
.listview-entry-label::before
|
|
{
|
|
content: "[";
|
|
}
|
|
|
|
.listview-entry-label::after
|
|
{
|
|
content: "] ";
|
|
}
|
|
|
|
.listview-entry-field-empty {
|
|
display: none;
|
|
}
|
|
|
|
.listview-entry-field:not(:last-child)
|
|
{
|
|
margin-bottom: 16px;
|
|
}
|