Files
qmining-page/src/components/newsEntry.module.css
T
2021-03-26 15:44:11 +01:00

71 lines
1.0 KiB
CSS

.newsBody {
margin: 0px 12px;
color: #fff;
white-space: pre-line;
text-align: justify;
}
.newsTitle {
font-size: 25px;
color: var(--text-color);
margin: 0px 11px;
padding-bottom: 10px;
}
.newsDate {
margin-right: 12px;
margin-left: 14px;
}
.newsContainer {
margin: 5px 5px;
}
.delete_bttn {
font-size: 15px;
margin-top: 12px !important;
margin-left: 2px !important;
margin-right: 5px !important;
padding-top: 4px !important;
transition: width 0.5s, height 0.5s, ease-in 0.5s;
}
.adminPost {
border-left: 4px solid var(--text-color);
}
.userPost {
border-left: 4px solid azure;
}
.ownPost {
border-left: 4px dotted azure;
}
.newsContainer img {
max-width: 100%;
min-width: 200px;
border: 2px solid white;
}
.newsHeader {
display: flex;
justify-content: space-between;
align-items: center;
}
.userinfo {
display: flex;
align-items: center;
margin-bottom: 12px;
}
.newsRoot {
background-color: #191919;
margin-left: 8px;
margin-right: 8px;
margin-bottom: 16px;
margin-top: 16px;
padding: 10px;
}