style.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. body,html{
  2. width: 100%;
  3. min-height: 100%;
  4. margin: 0px 0px;
  5. font-family: Century Gothic, sans-serif;
  6. background-color: #F3F6F9;
  7. height: 100%;
  8. }
  9. .container{
  10. width: 60%;
  11. min-width:100%;
  12. margin: 0px auto;
  13. background-color: #FFF;
  14. padding: 20px;
  15. border-radius: 10px;
  16. }
  17. .error-container,
  18. .info-container {
  19. padding: 20px;
  20. border: 1px solid #324875;
  21. border-radius: 10px;
  22. }
  23. .btn-eba {
  24. background-color: #324875;
  25. border-color: #2B3E60;
  26. color: white;
  27. opacity: 0.9;
  28. }
  29. .btn-eba:hover,
  30. .btn-eba:active,
  31. .btn-eba:focus {
  32. background-color: #324875;
  33. border-color: #2B3E60;
  34. color: white;
  35. opacity: 1;
  36. }
  37. .user-icon {
  38. width: 15px;
  39. margin-right: 5px;
  40. }
  41. .error-icon {
  42. width: 30px;
  43. }
  44. .status-label {
  45. background-color: #c0c0c0;
  46. padding: 3px;
  47. font-size: 10px;
  48. letter-spacing: 1px;
  49. border-radius: 5px;
  50. }
  51. .status-label.ACEPTADO {
  52. background-color: #79BD9A;
  53. border: 1px solid #74AF8F;
  54. }
  55. .status-label.CREADO {
  56. background-color: #ECD078;
  57. border: 1px solid #E5C877
  58. }
  59. .status-label.CONFIRMADO {
  60. background-color: #FF9F80;
  61. border: 1px solid #E8927C;
  62. }
  63. .action-label {
  64. margin: 0px 2px;
  65. background-color: #324875;
  66. color: white;
  67. opacity: 0.9;
  68. }
  69. .action-label:hover,
  70. .action-label:focus,
  71. .action-label:active {
  72. text-decoration: none;
  73. color: white;
  74. opacity: 1;
  75. }
  76. .no-disponible { color: #ccc; }
  77. .low { color: #c22;display:block;font-size:smaller; }
  78. .column { width:50%; float:left;}
  79. div > .column::after{clear:both;}
  80. input[type="number"]::-webkit-outer-spin-button,
  81. input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  82. input[type="number"] { -moz-appearance: textfield; }
  83. .warn { background-color:#E7DFBB !important; color:black;}
  84. a:focus{ color:white !important; }
  85. .navbar{
  86. width: 100%;
  87. /* height: 60px;*/
  88. background-color: #324875;
  89. color: white;
  90. font-family: Century Gothic, sans-serif;
  91. }
  92. .nav-wrap{
  93. padding-top: 6px;
  94. padding-left: 10px;
  95. }
  96. .menu{
  97. float:right;
  98. margin-top: 14px;
  99. margin-right: 50px;
  100. text-transform: capitalize;
  101. font-size: 11pt;
  102. }
  103. .menu li{
  104. display: inline;
  105. list-style-type: none;
  106. margin-left: 10px;
  107. }
  108. .menu a{
  109. color: white;
  110. text-decoration: none;
  111. }
  112. .menu a:hover{
  113. color: #CCCCCC;
  114. }
  115. .clear{
  116. clear: both;
  117. }
  118. .columnas{ width:100%; }
  119. .columnLeft, .columnRight {
  120. width:47%;
  121. margin:1%;
  122. margin-left: 0px;
  123. float:left;
  124. }
  125. .labelblock label {
  126. display:inline-block;
  127. min-width: 90px;
  128. margin-bottom: 5px;
  129. font-size:15px;
  130. }
  131. .labelblock{
  132. margin-bottom: 10px;
  133. }
  134. #ex1, #ex2 {
  135. width: 80%;
  136. display:inline-block;
  137. }
  138. #ex1_value, #ex2_value{
  139. color: #324875;
  140. font-weight: bold;
  141. font-size: 12pt;
  142. }
  143. #cantidad { width:60px; }
  144. /*.form-control{
  145. height: 25px;
  146. width: 100%;
  147. background-color: transparent;
  148. border-style: solid;
  149. border-width: 0px 0px 1px 0px;
  150. border-color: #324875;
  151. outline:0;
  152. } */
  153. h1{
  154. color: #324875;
  155. font-size: 20pt;
  156. margin-top: 0px;
  157. }
  158. .best-table{
  159. width: 100%;
  160. font-size:15px;
  161. border-spacing:0px;
  162. }
  163. .best-table th{
  164. color: #324875;
  165. font-weight: bold;
  166. font-size: 11pt;
  167. padding: 10px 8px;
  168. text-transform: uppercase;
  169. }
  170. .best-table td{
  171. border-bottom: 1px solid #CCC;
  172. color: #4D4D4D;
  173. padding: 6px 8px;
  174. text-align: center;
  175. }
  176. .best-table tr{
  177. border-bottom: 2px solid #6678B1;
  178. }
  179. .product-cell{
  180. width: 50%;
  181. }
  182. .delete{
  183. border: none!important;
  184. cursor:pointer;
  185. color: #324875;
  186. }
  187. .total-table{
  188. width: 60%!important;
  189. margin: 0px 45%!important;
  190. margin-top: 20px;
  191. }
  192. .css-button{
  193. text-transform: uppercase;
  194. text-decoration: inherit;
  195. border-radius: 6px 6px 6px 6px;
  196. border: 1px solid #3866A3;
  197. padding: 6px 14px;
  198. cursor: pointer;
  199. color: #FFFFFF;
  200. display: inline-block;
  201. background-color: #324875;
  202. }
  203. .css-button:hover {
  204. background-color: #56688C;
  205. color:white;
  206. }
  207. .css-button:active {
  208. position:relative;
  209. top: 1px;
  210. color:white;
  211. }
  212. .factura-datos{
  213. color: #324875;
  214. font-weight: bold;
  215. font-size: 12pt;
  216. padding: 10px 8px;
  217. }
  218. .preview{
  219. border: 1px solid #D6DAE3;
  220. padding: 20px;
  221. margin: 20px 0px;
  222. }
  223. .best-table img{
  224. width: 15px;
  225. cursor: pointer;
  226. }
  227. .best-table .tleft td { text-align:left !important;}
  228. .left {float:left;}
  229. .right{float:right;}
  230. #camaras > img { max-width: 45%; }
  231. @media print {
  232. .noimprimir { display: none; }
  233. a:after{ content: "" !important; }
  234. html, body {
  235. width: 210mm;
  236. height: 297mm;
  237. font-size: 10px !important;
  238. }
  239. table { table-layout: fixed !important; width: 95%; }
  240. td:first-child, th:first-child { width: 200px !important }
  241. table td, table th {
  242. margin:0px;
  243. border-spacing:0px;
  244. border: 0px;
  245. width: 100px;
  246. overflow: hidden;
  247. display: inline-block;
  248. white-space: nowrap;
  249. }
  250. @page {
  251. size: A4 portrait;
  252. margin: 6mm 6mm 6mm 6mm;
  253. }
  254. }