Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * demo.css
  3. * File include item demo only specific css only
  4. ******************************************************************************/
  5. .light-style .menu .app-brand.demo {
  6. height: 64px;
  7. }
  8. .dark-style .menu .app-brand.demo {
  9. height: 64px;
  10. }
  11. .row {
  12. display: flex;
  13. }
  14. .column {
  15. flex: 50%;
  16. }
  17. .column1{
  18. flex:20%;
  19. }
  20. .btn-submit {
  21. position: fixed;
  22. top: 20px;
  23. left: 20px;
  24. background-color: #3498db;
  25. color: #fff;
  26. border: none;
  27. padding: 10px 15px;
  28. font-size: 16px;
  29. cursor: pointer;
  30. border-radius: 5px;
  31. text-decoration: none;
  32. display: flex;
  33. align-items: center;
  34. transition: background-color 0.3s;
  35. }
  36. .icon-container {
  37. display: flex;
  38. flex-wrap: wrap;
  39. justify-content: center;
  40. gap: 20px;
  41. max-width: 980px; /* Optional: Sesuaikan dengan tata letak Anda */
  42. margin: 0 auto;
  43. }
  44. .btn-update {
  45. background-color: green; /* Warna latar belakang tombol "Update" */
  46. }
  47. .btn-delete {
  48. background-color: red; /* Warna latar belakang tombol "Delete" */
  49. }
  50. .icon {
  51. text-align: center;
  52. border-radius: 10px;
  53. padding: 10px;
  54. background-color: #ffff;
  55. text-decoration: none;
  56. width: 150px;
  57. box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  58. margin-bottom: 20px; /* Spasi antar baris */
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. }
  63. .icon img {
  64. width: 50px;
  65. border-radius: 10px;
  66. }
  67. .icon .app-brand-text {
  68. margin-top: 5px;
  69. font-weight: bold;
  70. font-size: 14px; /* Sesuaikan ukuran font dengan kebutuhan Anda */
  71. }
  72. .separator {
  73. width: w-fullscreen;
  74. min-height: 20px;
  75. padding: 10px;
  76. border: 1px solid #aaaaaa;
  77. }
  78. .app-brand-logo.demo {
  79. -ms-flex-align: center;
  80. align-items: center;
  81. -ms-flex-pack: center;
  82. justify-content: center;
  83. display: -ms-flexbox;
  84. display: flex;
  85. width: 34px;
  86. height: 24px;
  87. }
  88. .app-brand-logo.demo svg {
  89. width: 35px;
  90. height: 24px;
  91. }
  92. .app-brand-text.demo {
  93. font-size: 1.375rem;
  94. }
  95. /* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
  96. .layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  97. padding-top: 64px !important;
  98. }
  99. .layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  100. padding-top: 78px !important;
  101. }
  102. /* Navbar page z-index issue solution */
  103. .content-wrapper .navbar {
  104. z-index: auto;
  105. }
  106. /*
  107. * Content
  108. ******************************************************************************/
  109. .demo-blocks > * {
  110. display: block !important;
  111. }
  112. .demo-inline-spacing > * {
  113. margin: 1rem 0.375rem 0 0 !important;
  114. }
  115. /* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
  116. .demo-vertical-spacing > * {
  117. margin-top: 1rem !important;
  118. margin-bottom: 0 !important;
  119. }
  120. .demo-vertical-spacing.demo-only-element > :first-child {
  121. margin-top: 0 !important;
  122. }
  123. .demo-vertical-spacing-lg > * {
  124. margin-top: 1.875rem !important;
  125. margin-bottom: 0 !important;
  126. }
  127. .demo-vertical-spacing-lg.demo-only-element > :first-child {
  128. margin-top: 0 !important;
  129. }
  130. .demo-vertical-spacing-xl > * {
  131. margin-top: 5rem !important;
  132. margin-bottom: 0 !important;
  133. }
  134. .demo-vertical-spacing-xl.demo-only-element > :first-child {
  135. margin-top: 0 !important;
  136. }
  137. .rtl-only {
  138. display: none !important;
  139. text-align: left !important;
  140. direction: ltr !important;
  141. }
  142. [dir='rtl'] .rtl-only {
  143. display: block !important;
  144. }
  145. /* Dropdown buttons going out of small screens */
  146. @media (max-width: 576px) {
  147. #dropdown-variation-demo .btn-group .text-truncate {
  148. width: 254px;
  149. position: relative;
  150. }
  151. #dropdown-variation-demo .btn-group .text-truncate::after {
  152. position: absolute;
  153. top: 45%;
  154. right: 0.65rem;
  155. }
  156. }
  157. /*
  158. * Layout demo
  159. ******************************************************************************/
  160. .layout-demo-wrapper {
  161. display: -webkit-box;
  162. display: -ms-flexbox;
  163. display: flex;
  164. -webkit-box-align: center;
  165. -ms-flex-align: center;
  166. align-items: center;
  167. -webkit-box-orient: vertical;
  168. -webkit-box-direction: normal;
  169. -ms-flex-direction: column;
  170. flex-direction: column;
  171. margin-top: 1rem;
  172. }
  173. .layout-demo-placeholder img {
  174. width: 900px;
  175. }
  176. .layout-demo-info {
  177. text-align: center;
  178. margin-top: 1rem;
  179. }