| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- *{
- box-sizing:border-box;
- -moz-box-sizing:border-box;
- -webkit-box-sizing:border-box;
- -ms-box-sizing:border-box;
- -o-box-sizing:border-box;
- font-family: Arial, sans-serif !important;
- }
- @font-face {
- font-family: 'Arial';
- src: url('css/fonts/arial.eot');
- 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');
- font-weight: normal;
- font-style: normal;
- }
-
-
- html, body{
- width: 100%;
- height: 100%;
- }
- .view {
- height: 100%;
- /* width: 100%; */
- }
- /* body{
- padding-top: 100px;
- } */
- .ng-modal-overlay {
- /* A dark translucent div that covers the whole screen */
- position:fixed;
- z-index:9999;
- top:0;
- left:0;
- width:100%;
- height:100%;
- background-color:#000000;
- opacity: 0.8;
- }
- .ng-modal-dialog {
- /* A centered div above the overlay with a box shadow. */
- z-index:10000;
- position: fixed;
- width: 50%; /* Default */
- /* Center the dialog */
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- -webkit-transform: translate(-50%, -50%);
- -moz-transform: translate(-50%, -50%);
-
- background-color: #fff;
- box-shadow: 4px 4px 80px #000;
- }
- .ng-modal-dialog-content {
- padding:10px;
- font-size:13px;
- height: 48px;
- font-family: Arial, sans-serif !important;
- text-align: left;
- }
- .ng-modal-close {
- position: absolute;
- top: 3px;
- right: 5px;
- padding: 5px;
- cursor: pointer;
- font-size: 120%;
- display: inline-block;
- font-weight: bold;
- font-family: Arial, sans-serif !important;
- }
- /* .main{
- position: relative;
- overflow: hidden;
- } */
- header {
- height: 100px;
- box-shadow: 0 0 2px 2px rgba(3,3,3,.3);
- }
- header.fixed-top {
- top: 0;
- left: 0;
- width: 100%;
- position: fixed;
- z-index: 99;
- }
- .menubg {
- float: left;
- width: 74%;
- margin: 0 auto;
- padding: 0;
- }
- .menubg > ul {
- display: block !important;
- }
- .menubg>ul>li {
- position: relative;
- float: left;
- list-style-type: none;
- line-height: 96px;
- margin: 0 19.5px;
- border-radius: 0;
- border-bottom: 1px solid #fff;
- }
- .menubg>ul>li>a {
- display: block;
- padding: 3px 1px 0;
- color: #333;
- text-decoration: none;
- -webkit-transition: color .3s;
- -moz-transition: color .3s;
- transition: color .3s;
- font-size: 18px;
- text-transform: none;
-
- }
- header .logo {
- margin: 0;
- float: left;
- }
- .clsmenuactive{
- border-bottom: 2px solid #00344D !important;
- }
- .redclr{
- color:red;
- }
- .table>thead>tr>th{
- background: #00344D;
- color: #fff;
- }
- .panel{
- padding: 16px;
- }
- .panel-default>.panel-heading{
- background:#fff !important;
- border-color:#fff !important;
- }
- #cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul ul {
- list-style: none;
- margin: 0;
- padding: 0;
- border: 0;
- }
- #cssmenu > ul > li{
- border-bottom: 1px solid #d0d1d2;
- background-image: url(../images/selection_b.png);
- background-repeat: no-repeat;
- background-position: bottom;
- padding: 17px 6px;
- }
- #cssmenu ul li.submenuactive a {
- color: #296bb7;
- font-weight: 700;
- position: relative;
- background-repeat-y: no-repeat;
- height: 100%;
- background-size: contain;
- /* background: rgba(255, 255, 255, 0.7); */
- }
- #cssmenu ul a, #cssmenu ul a:link, #cssmenu ul a:visited {
- display: block;
- color:#fff;
- font-family: Arial, sans-serif !important;
- text-decoration: none;
- font-weight: 700;
- text-align: center;
- cursor: pointer;
- }
- #cssmenu > ul > li.submenuactive{
- background: #fff;
- }
- @media screen and (max-width: 1579px) and (min-width: 1371px){
- .menubg>ul>li>a {
- font-size: 17px;
- }
- }
-
|