Minor style improvements on main page /on new features/

This commit is contained in:
ndaniel1102 2021-03-11 01:44:58 +01:00
parent 49eae83f81
commit cdc2b3fd66
10 changed files with 105 additions and 39 deletions

View file

@ -1,3 +1,40 @@
.comment_bttn {
font-size: 15px;
padding-top: 4px !important;
transition: width 0.5s, height 0.5s, ease-in 0.5s;
}
.comment_bttn:hover {
transition: width 0.5s, height 0.5s, ease-out 0.5s;
color: gainsboro;
}
.reply_bttn {
font-size: 15px;
margin-top: 14.5px !important;
margin-left: 6px !important;
padding-top: 4px !important;
transition: width 0.5s, height 0.5s, ease-in 0.5s;
}
.reply_bttn:hover {
transition: width 0.5s, height 0.5s, ease-out 0.5s;
color: gainsboro;
}
.delete_bttn {
font-size: 15px;
margin-top: 14.5px !important;
margin-left: 6px !important;
padding-top: 4px !important;
transition: width 0.5s, height 0.5s, ease-in 0.5s;
}
.delete_bttn:hover {
transition: width 0.5s, height 0.5s, ease-out 0.5s;
color: gainsboro;
}
.comment {
margin-left: 25px;
padding: 8px 0px;
@ -5,7 +42,7 @@
.commentData {
padding: 5px 2px;
border-left: 2px solid var(--text-color);
border-left: 3px solid azure;
}
.commentHeader {
@ -33,7 +70,7 @@
}
.ownComment {
border-left: 2px solid green;
border-left: 5px dotted azure;
}
.showHide {
@ -53,5 +90,5 @@
}
.adminComment {
border-left: 2px solid yellow;
border-left: 3px solid gold;
}