round-one.component.scss 4.14 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
.button-clear {
    position: absolute;
    top: 96px;
    z-index: 1;
    right: 41vw;
  }
  .button-help {
    position: absolute;
    top: 0px;
    z-index: 1;
    right: 0vw;
    margin: 4.2rem;
    margin-right: 10px; /* เพิ่มใหม่ 12/16*/
  }
  
  table.ti-custom-table thead {
    height: 60px;
  }
  table.ti-custom-table thead th span {
    font-size: 12px;
    font-weight: bold;
  }
  .ti-custom-table td{
    padding-left: 0.9rem;
    padding-right: 1rem;
  }
  
  .ti-custom-table thead th:first-child {
    width: 105px; /* ปรับความกว้างตามที่ต้องการ */
    text-align: left; /* จัดตำแหน่งข้อความถ้าต้องการ */
  }
  .ti-custom-table thead th:last-child {
    width: 150px; /* ปรับความกว้างตามที่ต้องการ */
  }
  a.custom-link {
    padding: 10px 40px; /* ปรับ padding ให้เพิ่มขนาด */
  }
  /* สไตล์ของแถบเมนู */
  .nav-tabs {
    display: flex;
    width: 100%;
    cursor: pointer;
    margin-bottom: 10px;
    height: 20%;
  }
  
  .nav-item {
    list-style: none;
    margin-right: 10px; /* ช่องว่างระหว่างเมนู */
  }
  
  .nav-link {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: large;
    border-width: 2px 2px 0px 2px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 5px 5px 0px 0px;
  }
  
  .nav-link:hover {
    background-color: #f0f0f0; /* เปลี่ยนสีเมื่อ hover */
  }
  
  .nav-link.active {
    color: #ffffff; /* สีตัวอักษรในสถานะ active */
    font-size: large;
    border-bottom: 3.5px solid rgb(var(--color-primary)); /* เส้นใต้ */
    background-color: rgb(var(--color-primary));
    border-width: 2px 2px 0px 2px;
    border-style: solid;
    border-color: rgb(var(--color-primary));
    border-radius: 5px 5px 0px 0px;
  }
  
  .tab-content {
    margin-top: 20px;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  .nav-item-text {
    list-style: none;
    margin-right: 10px; /* ช่องว่างระหว่างเมนู */
  }
  .nav-link-text {
    text-decoration: none;
    display: inline-block;
    font-size: large;
    color: #569bf5;
    border-bottom: 2px solid #569bf5;
    line-height: 0.8;
  }
  .ti-pagination .page-link.active {
    background-color: #569bf5;
    color: white;
    border-radius: 50%;
    padding: 8px 12px;
  }
  .box-body{
    padding: 0rem;
  }
  .page{
    min-height: 0vh;
  }

  
  .ti-modal-content-alert{
    width: 35%;  /* ความกว้างที่คุณต้องการ */
    position: absolute; /* ทำให้สามารถจัดตำแหน่งได้ */
    top: 50%;  /* ให้อยู่กลางในแนวตั้ง */
    left: 50%;  /* ให้อยู่กลางในแนวนอน */
    transform: translate(-50%, -50%); /* เคลื่อนที่ modal กลับมาให้ตรงกลาง */
    background-color: #ffffff;
  }
  
  .header-title-type {
    width: 100%;
    min-height: 50px; /* ใช้ min-height เพื่อให้มีความยืดหยุ่น */
    // margin-top: 50px;
    // margin-bottom: 10px;
    justify-content: space-between; /* จัดเรียงองค์ประกอบภายใน */
    align-items: center; /* จัดกลางแนวตั้ง */
    padding-top: 50px;
    padding-bottom: 1rem;
  }
  .header-title-table {
    display: flex;
    align-items: center; /* จัดกึ่งกลางในแนวตั้ง */
    justify-content: flex-start; /* จัดตัวอักษรชิดซ้าย */
    height: 60px; /* ความสูงของกรอบ */
    padding-left: 20px; /* ระยะชิดซ้าย */
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .header-title-table span {
    font-size: 18px;
    font-weight: bold;
  }
  
  .soft-dark{
    background-color: #838282;
  }