58 lines
728 B
CSS
58 lines
728 B
CSS
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.no-click {
|
|
pointer-events:none;
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.upvote:hover {
|
|
color: var(--info);
|
|
}
|
|
|
|
.downvote:hover {
|
|
color: var(--danger);
|
|
}
|
|
|
|
.form-control, .form-control:focus {
|
|
background-color: var(--secondary);
|
|
color: #fff;
|
|
}
|
|
|
|
.custom-select {
|
|
color: #fff;
|
|
background-color: var(--secondary);
|
|
}
|
|
|
|
.mark {
|
|
background-color: #322a00;
|
|
}
|
|
|
|
.md-div p {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.md-div img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.listing {
|
|
min-height: 61px;
|
|
}
|
|
|
|
.icon {
|
|
display: inline-flex;
|
|
width: 1em;
|
|
height: 1em;
|
|
stroke-width: 0;
|
|
stroke: currentColor;
|
|
fill: currentColor;
|
|
vertical-align: middle;
|
|
margin-bottom: 6px;
|
|
}
|