Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. /* Account Panel */
  2. .account .btn-mute, .account .btn-deafen, .account .btn-settings {
  3. border: none;
  4. box-shadow: none;
  5. transition: background-color 0.2s;
  6. }
  7.  
  8. .account .btn-group {
  9. border-radius: 50px;
  10. }
  11.  
  12. .account .btn-mute {
  13. border-radius: 50px 0 0 50px;
  14. }
  15.  
  16. .account .btn-settings {
  17. border-radius: 0 50px 0 0 50px;
  18. }
  19.  
  20. .account .btn-mute:hover, .account .btn-deafen:hover, .account .btn-settings:hover {
  21. background-color: #23272A;
  22. }
  23.  
  24. /* Voice Panel */
  25. #voice-connection .btn-group {
  26. border-radius: 50px;
  27. }
  28.  
  29. #voice-connection .btn-info, #voice-connection .btn-disconnect {
  30. border: none;
  31. box-shadow: none;
  32. transition: background-color 0.2s;
  33. }
  34.  
  35. #voice-connection .btn-info:hover, #voice-connection .btn-disconnect:hover {
  36. background-color: #23272A;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement