Created
February 16, 2022 21:09
-
-
Save adjeim/4625aa733d7051694d991c9a2b769c9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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