style.scss 493 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #writeHeaderContent {
  2. margin-bottom: 0.625rem;
  3. }
  4. #writeFooterContent {
  5. margin-top: 0.625rem;
  6. }
  7. // 최근 게시글 목록
  8. #latestPosts {
  9. > article:first-of-type {
  10. overflow: hidden;
  11. table {
  12. tr.active {
  13. background-color: #f4fcff;
  14. }
  15. }
  16. }
  17. // 목록으로
  18. > article:last-of-type {
  19. text-align: center;
  20. padding: 0.938rem 0 1.25rem 0;
  21. > a {
  22. padding-left: 30px;
  23. padding-right: 30px;
  24. }
  25. }
  26. }
  27. #report {
  28. select, textarea {
  29. width: 100%;
  30. padding: 0.5rem;
  31. }
  32. }