Skip to content

Instantly share code, notes, and snippets.

@adjeim
Created February 16, 2022 21:09
Show Gist options
  • Save adjeim/4625aa733d7051694d991c9a2b769c9d to your computer and use it in GitHub Desktop.
Save adjeim/4625aa733d7051694d991c9a2b769c9d to your computer and use it in GitHub Desktop.
.host-panel {
position: fixed;
right: -34%;
top: 0;
padding: 1rem 2rem;
height: 100vh;
width: 30%;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
background-color: rgb(124, 169, 227);
border-left: 7px solid rgb(41, 103, 184);
color: white;
transition: 0.5s all ease;
}
.open {
right: 0%;
}
.host-panel h3 {
display: flex;
align-items: center;
}
.host-panel h3 button {
padding: 8px;
margin-left: 10px;
}
.host-panel ul {
padding: 0;
}
.participantDetails {
display: flex;
align-items: center;
list-style-type: none;
}
.participantDetails button {
margin-left: 16px;
background-color: rgb(225, 73, 73);
color:rgb(255, 255, 255);
padding: 8px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment