| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // 로그인 기록
- #accountLoginLog {
- box-sizing: border-box;
- table {
- margin-bottom: 0;
- min-width: 580px;
- caption {
- caption-side: top;
- color: #bbbbbb;
- }
- tr {
- border-bottom: 1px solid #212121;
-
- th, td {
- text-align: center;
- }
- }
- thead {
- tr {
- th {
- background: #133a46;
- }
- }
- }
- tbody {
- tr {
- td {
- text-align: center;
- vertical-align: middle;
- border: none;
- font-size: 13px;
- }
- }
- }
- }
- }
|