Spaces:
Sleeping
Sleeping
File size: 3,499 Bytes
8b454b3 6934d4e 8b454b3 6934d4e 8b454b3 6934d4e 8b454b3 6934d4e 8b454b3 6934d4e 8b454b3 6934d4e 8b454b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
/********************************************************************/
/* Style the tab */
.tab {
overflow: hidden;
/* border: 1px solid black; */
background-color:black;
font-family: "acumin-pro", sans-serif;
}
.tab .dropbtn{
float:right
}
.tablinks{
color:white;
font-size: 18px;
}
/* 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;
}
/*********************************************************************/
.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: 57px;
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; */
} |