style1.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. *{
  2. box-sizing:border-box;
  3. -moz-box-sizing:border-box;
  4. -webkit-box-sizing:border-box;
  5. -ms-box-sizing:border-box;
  6. -o-box-sizing:border-box;
  7. font-family: Arial, sans-serif !important;
  8. }
  9. @font-face {
  10. font-family: 'Arial';
  11. src: url('css/fonts/arial.eot');
  12. src: local('☺'), url('assets/fonts/arial.woff') format('woff'), url('assets/fonts/arial.ttf') format('truetype'), url('assets/fonts/arial.otf') format('truetype'), url('assets/fonts/arial.svg') format('svg');
  13. font-weight: normal;
  14. font-style: normal;
  15. }
  16. html, body{
  17. width: 100%;
  18. height: 100%;
  19. }
  20. .view {
  21. height: 100%;
  22. /* width: 100%; */
  23. }
  24. /* body{
  25. padding-top: 100px;
  26. } */
  27. .ng-modal-overlay {
  28. /* A dark translucent div that covers the whole screen */
  29. position:fixed;
  30. z-index:9999;
  31. top:0;
  32. left:0;
  33. width:100%;
  34. height:100%;
  35. background-color:#000000;
  36. opacity: 0.8;
  37. }
  38. .ng-modal-dialog {
  39. /* A centered div above the overlay with a box shadow. */
  40. z-index:10000;
  41. position: fixed;
  42. width: 50%; /* Default */
  43. /* Center the dialog */
  44. top: 50%;
  45. left: 50%;
  46. transform: translate(-50%, -50%);
  47. -webkit-transform: translate(-50%, -50%);
  48. -moz-transform: translate(-50%, -50%);
  49. background-color: #fff;
  50. box-shadow: 4px 4px 80px #000;
  51. }
  52. .ng-modal-dialog-content {
  53. padding:10px;
  54. font-size:13px;
  55. height: 48px;
  56. font-family: Arial, sans-serif !important;
  57. text-align: left;
  58. }
  59. .ng-modal-close {
  60. position: absolute;
  61. top: 3px;
  62. right: 5px;
  63. padding: 5px;
  64. cursor: pointer;
  65. font-size: 120%;
  66. display: inline-block;
  67. font-weight: bold;
  68. font-family: Arial, sans-serif !important;
  69. }
  70. /* .main{
  71. position: relative;
  72. overflow: hidden;
  73. } */
  74. header {
  75. height: 100px;
  76. box-shadow: 0 0 2px 2px rgba(3,3,3,.3);
  77. }
  78. header.fixed-top {
  79. top: 0;
  80. left: 0;
  81. width: 100%;
  82. position: fixed;
  83. z-index: 99;
  84. }
  85. .menubg {
  86. float: left;
  87. width: 74%;
  88. margin: 0 auto;
  89. padding: 0;
  90. }
  91. .menubg > ul {
  92. display: block !important;
  93. }
  94. .menubg>ul>li {
  95. position: relative;
  96. float: left;
  97. list-style-type: none;
  98. line-height: 96px;
  99. margin: 0 19.5px;
  100. border-radius: 0;
  101. border-bottom: 1px solid #fff;
  102. }
  103. .menubg>ul>li>a {
  104. display: block;
  105. padding: 3px 1px 0;
  106. color: #333;
  107. text-decoration: none;
  108. -webkit-transition: color .3s;
  109. -moz-transition: color .3s;
  110. transition: color .3s;
  111. font-size: 18px;
  112. text-transform: none;
  113. }
  114. header .logo {
  115. margin: 0;
  116. float: left;
  117. }
  118. .clsmenuactive{
  119. border-bottom: 2px solid #00344D !important;
  120. }
  121. .redclr{
  122. color:red;
  123. }
  124. .table>thead>tr>th{
  125. background: #00344D;
  126. color: #fff;
  127. }
  128. .panel{
  129. padding: 16px;
  130. }
  131. .panel-default>.panel-heading{
  132. background:#fff !important;
  133. border-color:#fff !important;
  134. }
  135. #cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul ul {
  136. list-style: none;
  137. margin: 0;
  138. padding: 0;
  139. border: 0;
  140. }
  141. #cssmenu > ul > li{
  142. border-bottom: 1px solid #d0d1d2;
  143. background-image: url(../images/selection_b.png);
  144. background-repeat: no-repeat;
  145. background-position: bottom;
  146. padding: 17px 6px;
  147. }
  148. #cssmenu ul li.submenuactive a {
  149. color: #296bb7;
  150. font-weight: 700;
  151. position: relative;
  152. background-repeat-y: no-repeat;
  153. height: 100%;
  154. background-size: contain;
  155. /* background: rgba(255, 255, 255, 0.7); */
  156. }
  157. #cssmenu ul a, #cssmenu ul a:link, #cssmenu ul a:visited {
  158. display: block;
  159. color:#fff;
  160. font-family: Arial, sans-serif !important;
  161. text-decoration: none;
  162. font-weight: 700;
  163. text-align: center;
  164. cursor: pointer;
  165. }
  166. #cssmenu > ul > li.submenuactive{
  167. background: #fff;
  168. }
  169. @media screen and (max-width: 1579px) and (min-width: 1371px){
  170. .menubg>ul>li>a {
  171. font-size: 17px;
  172. }
  173. }