lemmy/ui/assets/css/main.css

117 lines
1.4 KiB
CSS
Raw Normal View History

2019-08-20 21:40:51 +00:00
.navbar-toggler {
border: 0px;
}
.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;
}
2019-08-24 21:27:25 +00:00
.md-div p:last-child {
margin-bottom: 0px;
}
.md-div img {
max-width: 100%;
height: auto;
}
.md-div h1,h2,h3,h4,h5 {
font-size:1.171875rem;
}
.comment-node {
2019-08-18 01:59:59 +00:00
margin-bottom: 10px;
}
2019-08-18 02:31:32 +00:00
.vote-bar {
2019-08-29 04:57:38 +00:00
margin-top: -6.5px;
2019-08-18 02:31:32 +00:00
}
2019-08-18 04:41:55 +00:00
.post-title {
line-height: 1.0;
}
.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;
}
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: 50vh;
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 {
2019-08-24 06:44:44 +00:00
max-height: 62px;
max-width: 400px;
2019-04-24 17:26:15 +00:00
}
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
}
2019-08-29 19:06:08 +00:00
hr {
border-top: 1px solid var(--secondary);
}
2019-08-31 16:40:42 +00:00
.emoji {
height: 1.2em !important;
}