lemmy/ui/src/css/main.css

132 lines
1.6 KiB
CSS
Raw Normal View History

2019-05-05 22:47:35 +00:00
body, .text-white, .navbar-brand, .badge-light, .btn-secondary {
color: #dedede !important;
}
.pointer {
cursor: pointer;
}
.no-click {
pointer-events:none;
opacity: 0.65;
}
.upvote:hover {
color: var(--info);
}
2019-08-17 19:46:32 +00:00
.upvote {
margin-bottom: -5px;
}
.downvote:hover {
color: var(--danger);
}
2019-08-17 19:46:32 +00:00
.downvote {
margin-top: -10px;
}
.form-control, .form-control:focus {
background-color: var(--secondary);
color: #fff;
}
.form-control:disabled {
background-color: var(--secondary);
opacity: .5;
}
.custom-select {
color: #fff;
background-color: var(--secondary);
}
.mark {
2019-04-24 16:58:45 +00:00
background-color: #333;
}
.mark-two {
background-color: #444 !important;
}
.md-div p {
margin-bottom: 0px;
}
.md-div img {
max-width: 100%;
height: auto;
}
2019-08-18 02:12:48 +00:00
.listing {
min-height: 61px;
2019-08-18 02:12:48 +00:00
}
.details {
2019-08-18 01:59:59 +00:00
margin-bottom: 10px;
}
2019-08-18 02:31:32 +00:00
.vote-bar {
margin-top: -3px;
}
.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); }
}
.dropdown-menu {
z-index: 2000;
}
.navbar-bg {
background-color: #222;
}
blockquote {
border-left: 3px solid #ccc;
margin: 0.5em 5px;
padding: 0.1em 5px;
}
2019-04-20 18:17:00 +00:00
.mouse-icon {
margin-top: -4px;
}
.new-comments {
max-height: 100vh;
2019-04-22 00:27:39 +00:00
overflow: hidden;
}
.new-comments:hover {
overflow-y: auto;
}
2019-04-24 17:26:15 +00:00
.thumbnail {
max-height: 50px;
max-width: 50px;
}
2019-04-26 15:53:45 +00:00
2019-04-26 16:11:04 +00:00
.no-s-hows {
2019-04-26 16:21:20 +00:00
position: absolute !important;
top: -9999px !important;
left: -9999px !important;
2019-04-26 15:53:45 +00:00
}