header.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <div class="add_hdr">
  2. <div class="add_nav" id="addontabs">
  3. <ul>
  4. <li <?php if(!isset($_GET['action'])){ ?> class="active"<?php } ?>><a href="addonmodules.php?module=wgs_switchepp" class="selectedtab" style="line-height: normal;"><i class="fa fa-arrow-circle-down"></i> Get Poll</a></li>
  5. <li <?php if(isset($_GET['action']) && $_GET['action']=='domainlist'){ ?> class="active"<?php } ?>><a href="addonmodules.php?module=wgs_switchepp&action=domainlist" style="line-height: normal;"><i class="fa fa-file-o"></i> Domains List</a></li>
  6. </ul>
  7. </div>
  8. </div>
  9. <style>
  10. .add_nav ul li.active a {
  11. color: #fff;
  12. background-color: #3c8dbc;
  13. border-radius: 4px;
  14. }
  15. .add_nav{
  16. margin:0px;
  17. padding:0px;
  18. }
  19. .add_nav ul {
  20. margin: 0px;
  21. padding: 0px 15px;
  22. }
  23. .add_nav ul li{
  24. margin:0px;
  25. padding:0px;
  26. float:left;
  27. line-height:52px;
  28. list-style:none;
  29. }
  30. .add_nav ul li a {
  31. color: #000;
  32. display: block;
  33. font-size: 14px;
  34. margin: 0;
  35. padding: 10px 20px;
  36. text-decoration: none;
  37. }
  38. .add_hdr {
  39. background: #fff;
  40. margin: 0px;
  41. padding: 8px 0px;
  42. width: 100%;
  43. height: auto;
  44. box-shadow: 3px 1px 10px #00000024;
  45. border-radius: 3px;
  46. align-items: center;
  47. display: flex;
  48. justify-content: space-between;
  49. }
  50. .poll_cont {
  51. margin-top: 55px;
  52. }
  53. .csv_file_upload {
  54. margin-top: 25px;
  55. min-height: 155px;
  56. /* position: relative;
  57. width: 30%; */
  58. /* top: 50%; */
  59. /* left: 30%; */
  60. background: #fff;
  61. padding: 18px 64px;
  62. box-shadow: 3px 1px 10px #00000024;
  63. }
  64. .list_domain {
  65. margin-top: 85px;
  66. }
  67. table#csvdomains thead {
  68. background: #3c8dbc;
  69. color: #fff;
  70. }
  71. #csvdomains tr.even {
  72. background: #ecf5fb;
  73. }
  74. div#csvdomains_wrapper {
  75. /* background: #fff; */
  76. box-shadow: 3px 1px 10px #00000024;
  77. padding: 20px;
  78. margin-bottom: 30px;
  79. }
  80. .content-wrapper{
  81. /* float: left; */
  82. background-color: #ffffff;
  83. }
  84. footer.main-footer {
  85. border: none;
  86. }
  87. </style>