Advertisement
majodex77

my pro css

Jun 10th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.87 KB | None | 0 0
  1. .header {
  2.     width: 100%;
  3.     float: left;
  4.     background: #050606;
  5.     position: fixed;
  6.     left: 0px;
  7.     right: 0px;
  8.     top: 0px;
  9.     z-index: 9999;
  10.     box-shadow: 0 0 5px #888;
  11. }
  12. .menu-link {
  13.     width: 100%;
  14.     float: left;
  15. }
  16. .menu-link ul {
  17.     margin: 0px;
  18.     padding: 0px;
  19.     list-style: none;
  20.     float: right
  21. }
  22. .menu-link ul li {
  23.     display: inline-block
  24. }
  25. .menu-link ul li a {
  26.     display: block;
  27.     margin: 0 10px;
  28.     padding: 27px 15px;
  29.     color: #999;
  30.     text-decoration: none;
  31.     border-bottom: 3px solid #ba0400;
  32.     font-size: 14px;
  33.     text-align: left;
  34.     transition: all .5s ease;
  35.     -webkit-transition: all .5s ease;
  36.     -moz-transition: all .5s ease;
  37. }
  38. .menu-link ul li a:hover {
  39.     color: #fff;
  40.     border-bottom: 3px solid #fff;
  41. }
  42. .main-bg{    background: url(../images/z1YRs7.jpg) no-repeat left center;
  43.     width: 100%;
  44.     float: left;
  45.     height: 100%;
  46.     background-size: cover;}
  47.     .flight-widget{    width: 100%;
  48.     float: left;
  49.     background: rgba(0 ,0,0, .5);
  50.     padding: 0;
  51.     margin-top: 50px;
  52.     border: 5px solid #5774da;
  53.     box-shadow: 2px 4px 8px #060606;}
  54.     .flight-widget ul{    margin: 0;
  55.     padding: 0;
  56.     list-style: none;text-align:center;}
  57.     .flight-widget ul li{    display: inline-block;}
  58.     .flight-widget ul li.flight-align{float:left;}
  59.     .flight-widget ul li.active{background:#3c3b6e;}
  60.     .flight-widget ul li.car-align{float:right;}
  61.     .flight-widget ul li a{display: block;
  62.     margin: 10px 15px;
  63.     color: #fff;
  64.     font-size: 19px;
  65.     }
  66.     .tab-content{width:100%;float:left;padding:5px;background:#3c3b6e;}
  67.     .tab-content .input-group-addon {
  68.     background-color: #b22234;
  69.      border:none;
  70.     color: #fff;
  71.     }
  72.     .hotel-con .input-group{margin:5px 0;float:left;width:100%;}
  73.     .input-group.half{width:48%}
  74.     /*Csutom css of calnder*/
  75.     #ui-datepicker-div{z-index:99!important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement