This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
lemmy/ui/src/main.css

78 lines
954 B
CSS
Raw Normal View History

2019-03-27 19:54:55 +00:00
body {
font-family: 'Open Sans', sans-serif;
}
2019-03-27 18:37:16 +00:00
.pointer {
cursor: pointer;
}
2019-03-27 18:37:16 +00:00
.no-click {
pointer-events:none;
opacity: 0.65;
}
2019-03-27 18:37:16 +00:00
.upvote:hover {
color: var(--info);
}
.downvote:hover {
color: var(--danger);
}
2019-03-30 06:08:02 +00:00
.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;
}
2019-03-31 00:21:50 +00:00
.md-div img {
max-width: 100%;
height: auto;
}
.listing {
min-height: 61px;
}
2019-04-06 22:49:51 +00:00
.icon {
display: inline-flex;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
vertical-align: middle;
align-self: center;
}
.spin {
animation: spins 2s linear infinite;
}
@keyframes spins {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
2019-04-06 22:49:51 +00:00
}
2019-04-09 21:21:19 +00:00
.dropdown-menu {
z-index: 2000;
}
.navbar-bg {
background-color: #222;
}