| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #profile {
- padding: 0 32px 32px 32px;
- h1 {
- font-size: 22px;
- margin-bottom: 10px;
- }
- table {
- border: 1px solid #ccc;
- caption {
- text-align: left;
- font-size: 16px;
- margin-bottom: 10px;
- }
- tbody {
- tr {
- th, td {
- text-align: left;
- font-size: 14px;
- font-weight: normal;
- padding: 8px 9px;
- }
- th {
- background: #f9f9f9;
- border: 1px solid #ccc;
- }
- td {
- border-bottom: 1px solid #ccc;
- a {
- height: min-content;
- padding: 3px 16px;
- }
- &:nth-of-type(2) {
- text-align: right;
- }
- }
- }
- }
- }
- dl {
- dt, dd {
- font-size: 14px;
- }
- dt {
- font-weight: bold;
- margin-bottom: 7px;
- }
- dd {
- margin-bottom: 2px;
- }
- }
- }
|