Spaces:
Sleeping
Sleeping
| /********************************************************************/ | |
| /* Style the tab */ | |
| .tab { | |
| display: flex; | |
| align-items: center; | |
| justify-content: flex-start; | |
| gap: 10px; /* Adds spacing between elements */ | |
| overflow: hidden; | |
| /* border: 1px solid black; */ | |
| background-color:black; | |
| /* font-family: "acumin-pro", sans-serif; */ | |
| } | |
| .tablinks { | |
| color:white; | |
| font-size: 18px; | |
| text-decoration: none; | |
| padding: 10px; | |
| /* font-weight: bold; */ | |
| /* color: #000; */ | |
| /* background-color: #f0f0f0; */ | |
| border: none; | |
| cursor: pointer; | |
| font-family: Arial, sans-serif; | |
| } | |
| /* Style the buttons that are used to open the tab content */ | |
| .tab button { | |
| background-color: inherit; | |
| /* float: left; */ | |
| border: none; | |
| outline: none; | |
| cursor: pointer; | |
| padding: 14px 16px; | |
| transition: 0.3s; | |
| } | |
| /* Change background color of buttons on hover */ | |
| .tab button:hover { | |
| background-color: rgb(0, 60, 255); | |
| } | |
| /* Create an active/current tablink class */ | |
| .tab button.active { | |
| background-color: rgb(0, 60, 255); | |
| } | |
| /* Style the tab content */ | |
| .tabcontent { | |
| display: none; | |
| /* padding: 6px 12px; */ | |
| /* border: 1px solid #ccc; */ | |
| border-top: none; | |
| } | |
| /*********************************************************************/ | |
| .tab .dropbtn{ | |
| /* float:right; */ | |
| margin-left: auto; /* Pushes the button to the right */ | |
| background-color: inherit; | |
| border: none; | |
| outline: none; | |
| cursor: pointer; | |
| padding: 14px 16px; | |
| transition: 0.3s; | |
| } | |
| .container { | |
| /* display: inline-block; */ | |
| cursor: pointer; | |
| margin-top: 5px; | |
| display: block; | |
| float: left; | |
| margin-right: 5px; | |
| } | |
| .bar1, .bar2, .bar3 { | |
| width: 30px; | |
| height: 5px; | |
| background-color: #fcfcfc; | |
| margin: 5px 0; | |
| transition: 0.4s; | |
| margin-left: 5px; | |
| } | |
| .change .bar1 { | |
| transform: translate(0, 10px) rotate(-45deg); | |
| } | |
| .change .bar2 {opacity: 0;} | |
| .change .bar3 { | |
| transform: translate(0, -10px) rotate(45deg); | |
| } | |
| /*Dashed Lines on the left - Menu icon */ | |
| #mySidebar { | |
| position: fixed; | |
| width:450px; | |
| height:900px; | |
| background:rgb(179, 179, 179); | |
| transform: translateX(-100%); | |
| -webkit-transform: translateX(-100%); | |
| z-index: 2; | |
| } | |
| .slide-in { | |
| animation: slide-in 0.9s forwards; | |
| -webkit-animation: slide-in 0.9s forwards; | |
| } | |
| .slide-out { | |
| animation: slide-out 0.9s forwards; | |
| -webkit-animation: slide-out 0.9s forwards; | |
| } | |
| @keyframes slide-in { | |
| 100% { transform: translateX(0%); } | |
| } | |
| @-webkit-keyframes slide-in { | |
| 100% { -webkit-transform: translateX(0%); } | |
| } | |
| @keyframes slide-out { | |
| 0% { transform: translateX(0%); } | |
| 100% { transform: translateX(-100%); } | |
| } | |
| @-webkit-keyframes slide-out { | |
| 0% { -webkit-transform: translateX(0%); } | |
| 100% { -webkit-transform: translateX(-100%); } | |
| } | |
| /*Menu options*/ | |
| #menuOptions , #menuOptions li a{ | |
| margin-left: 5px; | |
| font-size: 25px; | |
| margin-top: 8px; | |
| color: white; | |
| font-family: "acumin-pro", sans-serif; | |
| font-weight: 400; | |
| font-style: normal; | |
| text-decoration: none; | |
| } | |
| #menuOptions li{ | |
| margin-bottom: 6px; | |
| } | |
| #menuOptions li:hover, #menuOptions li a:hover{ | |
| color: black; | |
| cursor: pointer; | |
| } | |
| /* User Guide Content(hidden by default) */ | |
| .dropdown-content { | |
| display: none; | |
| /* position: -webkit-sticky; Safari */ | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| margin-top: 45px; | |
| background-color: #f9f9f9; | |
| min-width: 160px; | |
| max-width: 36%; | |
| box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | |
| z-index: 999; | |
| font-family: "acumin-pro", sans-serif; | |
| font-weight: 400; | |
| font-style: normal; | |
| font-size: 13px; | |
| float: right; | |
| border: none; | |
| outline: none; | |
| } | |
| #userguidetext{ | |
| margin-left: 20px; | |
| margin-right: 20px; | |
| } | |
| #secondpage{ | |
| float: right; | |
| margin-right: 10px; | |
| cursor: pointer; | |
| } | |
| #firstpage{ | |
| cursor: pointer; | |
| } | |
| #userguideheadings{ | |
| font-size: 14px; | |
| font-weight: bold; | |
| } | |
| #underlinedLables{ | |
| text-decoration: underline; | |
| } | |
| /* i info button*/ | |
| #infoImg{ | |
| width:30px; | |
| margin-top: -5px; | |
| margin-bottom: -10px; | |
| /* margin-left: -200px; */ | |
| } |