style.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. /*
  2. *Devel
  3. */
  4. table tr .selected {
  5. background-color: #d9edf7;
  6. }
  7. .no-scroll {
  8. overflow: hidden;
  9. }
  10. body a,
  11. body a:visited {
  12. text-decoration: none;
  13. }
  14. .dropdown-toggle {
  15. color: #fff;
  16. }
  17. .dropdown-toggle:hover {
  18. color: #666;
  19. }
  20. /* Bootstrap Overwrite */
  21. .card {
  22. border-radius: 0px !important;
  23. }
  24. .form-group div {
  25. padding: 0px;
  26. }
  27. .form-control {
  28. border-radius: 0px !important;
  29. }
  30. .btn {
  31. border-radius: 0px !important;
  32. }
  33. body {
  34. font-family: Ubuntu;
  35. font-size: 1pc;
  36. }
  37. .dataTables_wrapper .dataTables_paginate .paginate_button {
  38. padding: 0px !important;
  39. }
  40. /* Prevent bootstrap to interfere with metis menu */
  41. .nav .active .collapse {
  42. display: block !important;
  43. }
  44. /* Make it square */
  45. .square div:first-child {
  46. padding-right: 0px !important
  47. }
  48. .square div:nth-child(2) {
  49. padding-left: 0px !important
  50. }
  51. .square .input-group-text {
  52. border-radius: 0px !important
  53. }
  54. .btn-block {
  55. width: 100%;
  56. }
  57. .searchfields,
  58. .searchfields div:nth-child(2) {
  59. padding-right: 0px;
  60. }
  61. /* FLOATING SAVE BUTTON -------------------------------- */
  62. .floating {
  63. position: fixed;
  64. border-radius: 50%;
  65. }
  66. .floating-1 {
  67. padding: 15px;
  68. bottom: 30px;
  69. right: 30px;
  70. }
  71. /*------------------------------------------------------ */
  72. textarea {
  73. resize: vertical;
  74. min-height: 200px
  75. }
  76. .data-table table {
  77. width: 100% !important;
  78. }
  79. #modal table {
  80. width: 100%;
  81. }
  82. #modal table td {
  83. white-space: nowrap;
  84. }
  85. table {
  86. white-space: nowrap;
  87. }
  88. /* BreadCrumbs -------------------------------- */
  89. .breadcrumb {
  90. width: 100%;
  91. background-color: #ddd;
  92. }
  93. /*
  94. _____ _____ _____ ______ ____ _____
  95. / ____|_ _| __ \| ____| _ \ /\ | __ \
  96. | (___ | | | | | | |__ | |_) | / \ | |__) |
  97. \___ \ | | | | | | __| | _ < / /\ \ | _ /
  98. ____) |_| |_| |__| | |____| |_) / ____ \| | \ \
  99. |_____/|_____|_____/|______|____/_/ \_\_| \_\
  100. */
  101. #wrapper {
  102. padding-left: 0;
  103. }
  104. #sidebar-wrapper {
  105. background-color: #000 !important;
  106. height: 1000px;
  107. width: 200px;
  108. background-color: #fff;
  109. position: fixed !important;
  110. z-index: 100;
  111. }
  112. #wrapper.toggled {
  113. /*padding-left: 250px;*/
  114. }
  115. #sidebar-wrapper {
  116. position: fixed;
  117. left: 250px;
  118. width: 0;
  119. height: 100%;
  120. margin-left: -250px;
  121. overflow-y: auto;
  122. }
  123. #wrapper.toggled #sidebar-wrapper {
  124. width: 250px;
  125. }
  126. .nav-ident li a {
  127. padding-left: 10%;
  128. }
  129. .nav .menu-toggle {
  130. margin: 10px;
  131. }
  132. #page-content-wrapper {
  133. width: 100%;
  134. position: absolute;
  135. padding: 0px !important;
  136. }
  137. #wrapper .toggled #page-content-wrapper {
  138. position: absolute;
  139. margin-right: -250px;
  140. }
  141. .nav-item .in {
  142. display: block !important;
  143. }
  144. /* Sidebar responsiveness */
  145. @media(min-width:768px) {
  146. #wrapper {
  147. padding-left: 250px;
  148. }
  149. #wrapper.toggled {
  150. padding-left: 0;
  151. }
  152. #sidebar-wrapper {
  153. width: 250px;
  154. }
  155. #wrapper.toggled #sidebar-wrapper {
  156. width: 0;
  157. }
  158. #page-content-wrapper {
  159. padding: 20px;
  160. position: relative;
  161. }
  162. #wrapper.toggled #page-content-wrapper {
  163. position: relative;
  164. margin-right: 0;
  165. }
  166. .menu-small {
  167. display: none;
  168. }
  169. }
  170. .logo {
  171. text-align: center;
  172. margin-top: 15px;
  173. }
  174. .logo>img {
  175. width: 50%;
  176. }
  177. .search-nav {
  178. text-align: center;
  179. margin-bottom: 15px;
  180. }
  181. .search-nav>input {
  182. margin: 0 auto;
  183. border-radius: 0px;
  184. }
  185. #side-menu, #side-second-menu {
  186. font-size: 14px;
  187. }
  188. /* Sidebar, selected and expanded elements highlite */
  189. #side-menu .mm-active,
  190. #side-menu li ul {
  191. background-color: #666;
  192. }
  193. #side-second-menu {
  194. display: none;
  195. }
  196. #side-menu li,
  197. #side-second-menu li {
  198. width: 100%;
  199. }
  200. #side-menu li a,
  201. #side-second-menu li a {
  202. font-size: 1.1em;
  203. }
  204. #side-menu li i,
  205. #side-second-menu li i {
  206. margin-right: 10px;
  207. }
  208. .nav-dropdown {
  209. margin-right: 20px !important;
  210. }
  211. /* Header ---------------------------*/
  212. #navbar-top {
  213. min-height: 50px;
  214. }
  215. /*--*/
  216. #menu-toggle {}
  217. #menu-toggle:hover,
  218. #menu-toggle:focus {
  219. background-color: transparent;
  220. }
  221. #progress {
  222. margin-bottom: 0px;
  223. height: 10px;
  224. border-radius: 0px !important;
  225. }
  226. /* HELPER ---------------------------- */
  227. .hidden {
  228. display: none;
  229. }
  230. .round-ball {
  231. border-radius: 60px !important;
  232. font-size: 1.5em;
  233. position: fixed;
  234. padding: 20px;
  235. bottom: 20px;
  236. right: 20px;
  237. }
  238. @media print {
  239. #sidebar-wrapper,
  240. #header {
  241. display: none !important;
  242. }
  243. #wrapper {
  244. padding-left: 0px;
  245. }
  246. }