mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
49 lines
633 B
CSS
49 lines
633 B
CSS
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.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;
|
|
}
|