index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // 환율, 대출금리, 국제금리, 화훼 시세, 특일
  2. #exchange,
  3. #interest,
  4. #international,
  5. #flower,
  6. #anniversary,
  7. #fifa,
  8. #lotto {
  9. box-sizing: border-box;
  10. word-break: break-all;
  11. .nav {
  12. .nav-link.active {
  13. font-weight: bold;
  14. color: #fff;
  15. }
  16. }
  17. table {
  18. border-spacing: 0;
  19. border-collapse: collapse;
  20. border: 1px solid #222c36;
  21. caption {
  22. caption-side: top;
  23. overflow: hidden;
  24. }
  25. &.table > :not(caption) > * > * {
  26. border-bottom: 0;
  27. }
  28. &.table-bordered > :not(caption) > * {
  29. border: none;
  30. }
  31. &.table-bordered > :not(caption) > * > * {
  32. border: 1px solid #222c36;
  33. }
  34. thead {
  35. tr {
  36. th {
  37. background: #171e38;
  38. text-align: center;
  39. vertical-align: middle;
  40. border: none;
  41. }
  42. }
  43. }
  44. tbody {
  45. tr {
  46. td {
  47. text-align: center;
  48. vertical-align: middle;
  49. border: none;
  50. }
  51. }
  52. }
  53. }
  54. }
  55. #flower {
  56. form {
  57. input[type="radio"] {
  58. margin-right: 2px;
  59. }
  60. table {
  61. border: none;
  62. }
  63. }
  64. }