| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @charset "UTF-8";
- /* 작성 게시글 */
- #accountPost {
- box-sizing: border-box;
- }
- #accountPost table {
- margin-bottom: 0;
- }
- #accountPost table caption {
- caption-side: top;
- color: #bbbbbb;
- }
- #accountPost table tr th, #accountPost table tr td {
- text-align: center;
- }
- #accountPost table thead tr th {
- background: #133a46;
- }
- #accountPost table tbody tr:hover, #accountPost table tbody tr:focus {
- background-color: #1a1e21;
- }
- #accountPost table tbody tr th, #accountPost table tbody tr td {
- text-align: center;
- vertical-align: middle;
- }
- #accountPost table tbody tr td p {
- margin-bottom: 5px;
- }
- #accountPost table tbody tr td p label {
- font-size: 0.8rem;
- margin-right: 3px;
- }
- #accountPost table tbody tr td p del, #accountPost table tbody tr td p a {
- font-size: 0.8rem;
- font-weight: normal;
- text-decoration: none;
- }
- #accountPost table tbody tr td p var {
- color: #aa0000;
- font-style: initial;
- font-size: 0.813rem;
- vertical-align: bottom;
- letter-spacing: -1px;
- }
- #accountPost table tbody tr td p i {
- color: #cbd5e0;
- margin-left: 5px;
- vertical-align: -2px;
- }
- #accountPost table tbody tr td p span {
- font-size: 0.625rem;
- vertical-align: text-top;
- margin-left: 5px;
- }
- #accountPost table tbody tr td ul {
- margin: 0;
- padding: 0;
- }
- #accountPost table tbody tr td ul li {
- display: inline-block;
- font-size: 0.75rem;
- }
- #accountPost table tbody tr td ul li:after {
- content: "·";
- padding: 0 3px 0 7px;
- }
- #accountPost table tbody tr td ul li:last-child:after {
- content: "";
- padding: 0;
- }
- #accountPost table tbody tr td .thumbnail {
- display: block;
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- min-height: 50px;
- }
- #accountPost table tbody tr td .thumbnail > img {
- position: absolute;
- width: 100%;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- #accountPost table tbody tr td:first-child {
- text-align: center;
- }
- #accountPost table tbody tr td:last-child {
- text-align: left;
- }/*# sourceMappingURL=post.css.map */
|