pleroma-comments/pleroma-comments.css

118 lines
2.2 KiB
CSS

/* colors */
/*.pleroma-comment blockquote {
border-left: 3px solid red;
}*/
/*.pleroma-comment .bar {
background-color: green;
}*/
/*.pleroma-comment .card-link {
background-color: blue;
color: white;
}*/
/*.pleroma-comment .card-link:hover {
background-color: orange;
}*/
.pleroma-comment blockquote {
padding-left:1%;
}
.pleroma-comment h3 > a {
text-decoration:none;
}
.pleroma-comment > figure {
display:flex;
align-items:center;
}
.pleroma-comment > figure img {
height:5em;
margin-right: 1em;
}
/* meta information about post */
.pleroma-comment p, .pleroma-comment .chart {
margin-left: 5%;
}
/* usernames can either be figcaption or the first paragraph in the element */
.pleroma-comment + p, .pleroma-comment figcaption {
font-weight:bold;
}
.pleroma-comment p > a, .pleroma-comment figcaption > a {
font-weight:normal;
text-decoration:none;
}
.pleroma-comment .card {
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
margin: 1%;
margin-left:10%;
/* adjust this */
width: 300px;
}
.pleroma-comment .card-title {
font-size: 1.5em;
margin: 3%;
}
.pleroma-comment .card-description {
font-size: 1em;
margin:5%;
}
.pleroma-comment .card-image {
width: 100%;
height: auto;
}
.pleroma-comment .card-link {
display: block;
text-align: center;
padding: 10px;
text-decoration: none;
border-radius: 5px;
margin: 10px;
}
.pleroma-comment .chart {
/* border:1px solid red; */
display: flex;
flex-direction: column;
white-space:normal;
overflow:hidden;
}
@media only screen and (min-width:768px){
.pleroma-comment .chart {
width: 45%;
}
}
.pleroma-comment .bar-container {
align-items: center;
margin: 1% 0;
}
.pleroma-comment .bar {
padding-top: 0.5em;
padding-bottom:0.5em;
/* for options with 0% or small %s need at least 2 to bump away label */
margin-right:2em;
/* Prevent text wrapping for the bar width */
white-space: nowrap;
}
.pleroma-comment .bar-text {
overflow-wrap: break-word;
/* Allow word wrap */
word-wrap: break-word;
/* Allow normal wrapping */
white-space: normal;
}