bulletboards/ImageBoardServerApp/Shared/Components/Comment.razor.css

138 lines
1.9 KiB
CSS
Raw Normal View History

2023-01-25 22:45:36 +00:00
.toggleOpened{
color: #6272a4;
2023-01-25 22:45:36 +00:00
text-decoration: none;
}
.toggleOpened:hover{
color: #6272a4; !important;
2023-01-25 22:45:36 +00:00
cursor: pointer;
}
.threadFooter.a{
color: #6272a4;
}
2023-01-25 22:45:36 +00:00
.title{
color: #8be9fd;
2023-01-25 22:45:36 +00:00
}
.name{
color: #50fa7b;
2023-01-25 22:45:36 +00:00
}
.redText {
color: #ff5555;
}
2023-01-25 22:45:36 +00:00
.threadHeader{
text-align: left;
background-color: #241938;
border-bottom: 2px solid #2d2a42;
margin-inside: 2px;
2023-01-25 22:45:36 +00:00
}
.threadFooter{
text-align: right; !important;
align-self: end; !important;
}
.threadContent{
text-align: left;
display: flex;
}
.greenText{
color: #50fa7b;
}
2023-01-25 22:45:36 +00:00
.threadImage{
margin: 6px;
max-width: 500px;
max-height: 500px;
padding: 5px;
border: 1px solid #2d2a42;
border-radius: 5px;
2023-01-25 22:45:36 +00:00
}
.threadImage img{
max-width:150px;
width: 100%;
}
.threadImage img.active{
max-width:500px;
width: 100%;
2023-01-25 22:45:36 +00:00
}
.threadText{
display: block;
2023-01-25 22:45:36 +00:00
}
.threadTextContainer{
margin: 0;
2023-02-07 20:21:38 +00:00
}
2023-02-07 20:47:28 +00:00
2023-02-07 20:21:38 +00:00
.Admin{
color: #ff5555;
2023-02-07 20:21:38 +00:00
}
2023-02-07 20:47:28 +00:00
2023-02-07 20:21:38 +00:00
.Mod{
color: #bd93f9;
}
.comment{
border: 2px solid #2d2a42;
border-radius: 4px;
}
.threadFooter button{
border: none;
color: white;
padding: 4px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 3px;
}
.threadFooter a{
border: none;
color: white;
padding: 4px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 3px;
}
.delButton{
background-color: #433F6B;
color: white;
border: 2px solid #ff5555;
}
.delButton:hover{
background-color: #ff5555;
color: white;
}
.repButton{
background-color: #433F6B;
color: white;
border: 2px solid #ffa255;
}
.repButton:hover{
background-color: #ffa255;
color: white;
2023-02-07 20:47:28 +00:00
}