| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* 작성 댓글 */
- #accountComment {
- box-sizing: border-box;
- table {
- caption {
- caption-side: top;
- color: #bbbbbb;
- }
- tr {
- th, td{
- text-align: center;
- }
- }
- thead {
- tr {
- th {
- background: #133a46;
- }
- }
- }
- tbody {
- tr {
- &:hover,
- &:focus {
- background-color: #1a1e21;
- }
- th, td {
- text-align: center;
- vertical-align: middle;
- }
- td {
- p {
- font-size: 13px;
- a {
- color: #b3b3b3;
- }
- var {
- color: #aa0000;
- font-style: normal;
- margin-left: 3px;
- letter-spacing: -1px;
- vertical-align: middle;
- }
- i {
- color: #cbd5e0;
- margin-left: 3px;
- vertical-align: -1px;
- }
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- }
- }
- }
- }
|