div.passage-card {
    background-color: #fff;
    margin: 1em 0;
    padding: 1em;
    box-shadow: 0 0 2px #888;
}

h2.passage-title {
    padding-left: 5%;
    margin-top: 0;
    font-size: 1.7rem;
    font-family: Corbel, Arial, sans-serif;
}

h2.passage-title::before {
    content: "::\00a0";
}

p.passage-tags {
    border-left: 5px solid #888;
    background-color: #eee;
    padding: 1em;
    margin : 1em 1em;
}

div.passage-references {
    border-left: 5px solid #888;
    background-color: #eee;
    padding: 1em;
    margin: 1em;
}

h3.passage-references-title {
    font-size: 0.9rem;
    margin: 0;
    margin-bottom: 0.5em;
}

div.passage-reference-wrapper {
    font-size: 0.8rem;
    margin-left: 1rem;
}

a.jumpto {
    margin-right: 1em;
}

div.passage-source {
    border: 1px solid #111;
    padding: 1em;
    margin: 1em;
    background-color: #f8f8f8;
    overflow: auto;
    scrollbar-width: thin;
}

div.passage-source pre {
    font-family: Consolas, monaco, monospace;
    white-space: pre-wrap;
    line-height: 1.5em;
}

.passage-card .edit {
    float: right;
    margin: 0;
    padding: 0.5em;
    display: none;
    z-index: 2;
    cursor: pointer;
    background: #ccc;
    border-radius: 50%;
    transition: 300ms all;
    user-select: none;
}

.passage-card:hover .edit {
    display: inline-block;
}

.passage-card:hover .edit:hover, .passage-card:hover .edit:active {
    display: inline-block;
    padding: 1em;
    background: #eee;
    border: 1px solid #ccc;
}

span.tag-listing {
    cursor: pointer;
}

span.tag-listing:hover {
    opacity: 0.8;
}