mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 22:35:19 +08:00
46 lines
669 B
CSS
46 lines
669 B
CSS
|
|
.info {
|
|
vertical-align: middle;
|
|
list-style: none;
|
|
display: inline-block;
|
|
padding: 0;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
|
|
.detail {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.subDetail {
|
|
margin-left:10px;
|
|
padding: 0;
|
|
list-style: none;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
color: #888;
|
|
}
|
|
|
|
.lessDetail {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.username {
|
|
color: #393B44;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
padding: 2px 5px;
|
|
border-radius: 2px;
|
|
margin-left: -5px;
|
|
transition: background-color 200ms ease;
|
|
&:hover {
|
|
background-color: #E0E0E0;
|
|
}
|
|
}
|