| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- // 환율, 대출금리, 국제금리, 화훼 시세, 특일
- #exchange,
- #interest,
- #international,
- #flower,
- #anniversary,
- #fifa,
- #lotto {
- box-sizing: border-box;
- word-break: break-all;
- .nav {
- .nav-link.active {
- font-weight: bold;
- color: #fff;
- }
- }
- table {
- border-spacing: 0;
- border-collapse: collapse;
- border: 1px solid #222c36;
- caption {
- caption-side: top;
- overflow: hidden;
- }
- &.table > :not(caption) > * > * {
- border-bottom: 0;
- }
- &.table-bordered > :not(caption) > * {
- border: none;
- }
- &.table-bordered > :not(caption) > * > * {
- border: 1px solid #222c36;
- }
- thead {
- tr {
- th {
- background: #171e38;
- text-align: center;
- vertical-align: middle;
- border: none;
- }
- }
- }
- tbody {
- tr {
- td {
- text-align: center;
- vertical-align: middle;
- border: none;
- }
- }
- }
- }
- }
- #flower {
- form {
- input[type="radio"] {
- margin-right: 2px;
- }
- table {
- border: none;
- }
- }
- }
|