mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 21:13:12 +08:00
23 lines
313 B
CSS
23 lines
313 B
CSS
.list {
|
|
display: table;
|
|
list-style-type: none;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.listItem {
|
|
display: table-row;
|
|
}
|
|
|
|
.username {
|
|
display: table-cell;
|
|
}
|
|
|
|
.button {
|
|
composes: buttonReset from "coral-framework/styles/reset.css";
|
|
|
|
margin-left: 16px;
|
|
color: #D0011B;
|
|
text-decoration: underline;
|
|
}
|