Advertisement
Guest User

Untitled

a guest
May 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Raleway:300');
  2.  
  3. * {
  4. font-family: 'Raleway',sans-serif;
  5. }
  6.  
  7. .friends{
  8. background-color: rgba(150, 150, 150, 0.9);
  9. position: fixed;
  10. right: 0;
  11. z-index: 100;
  12. margin-top: 12vh;
  13. border-bottom-left-radius: 5px;
  14. border-bottom-right-radius: 5px;
  15. }
  16.  
  17. .friends-list.active{
  18. display: flex;
  19. padding: 0;
  20. margin: 0;
  21. flex-direction: column;
  22. }
  23.  
  24. .friends-list{
  25. display: none;
  26. }
  27.  
  28. .friends-header{display: flex;align-items: center;padding: 6px;font-size: 0.75em;color: #99d6c9;font-weight: bold;}
  29.  
  30. .friends__list-item {
  31. list-style-type: none;
  32. font-size: 0.65em;
  33. width: 100%;
  34. height: 42px;
  35. display: flex;
  36. align-items: center;
  37. padding-top: 4px;
  38. padding-bottom: 4px;
  39. box-sizing: border-box;
  40. border-top: 2px solid #9a9a9a;
  41. }
  42.  
  43. .friends__list-item .link{
  44. width: 100%;
  45. height: 100%;
  46. text-decoration: none;
  47. color: #99d5c9;
  48. display: flex;
  49. align-items: center;
  50. font-weight: 800;
  51. }
  52.  
  53. .friends__list-item .link .link-img {
  54. width: 2vh;
  55. height: 2vh;
  56. padding-left: 7px;
  57. padding-right: 7px;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement