Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. .guilds-wrapper {
  2. -webkit-transition: 200ms;
  3. -moz-transition: 200ms;
  4. -o-transition: 200ms;
  5. -ms-transition: 200ms;
  6. transition: 200ms;
  7. width: 20px !important;
  8. }
  9. .guilds-wrapper:hover {
  10. -webkit-transition: 200ms;
  11. -moz-transition: 200ms;
  12. -o-transition: 200ms;
  13. -ms-transition: 200ms;
  14. transition: 200ms;
  15. width: 250px !important;
  16. }
  17.  
  18. .guilds-wrapper .scroller-wrap{width: 250px !important;}
  19. .guilds-wrapper .guilds {
  20. display: flex;
  21. flex-flow: row wrap;
  22. padding-left: 0;
  23. align-content: flex-start;
  24. }
  25.  
  26. .guilds-wrapper .guilds .guild {
  27. margin-left: 8px;
  28. margin-top: 8px;
  29. }
  30.  
  31. .guilds-wrapper .guilds .guild.unread::before {
  32. left: -2px;
  33. top: 5px;
  34. z-index:9000;
  35. }
  36.  
  37. .guilds-wrapper .guilds .guild:first-child {
  38. position: relative;
  39. left: 0;
  40. margin: auto;
  41. margin-top: 15px;
  42. }
  43.  
  44. .guilds-wrapper .guilds .guild-separator {
  45. position: relative;
  46. width: 100%;
  47. margin-top: 10px;
  48. }
  49.  
  50. .guilds-wrapper .guilds .friends-online {
  51. position: relative;
  52. width: 100%;
  53. margin: auto;
  54. margin-top: 5px;
  55. }
  56.  
  57. .guilds-wrapper .guilds .guild.selected:before {
  58. display: none;
  59. }
  60.  
  61. .guilds-wrapper .guilds .guild {
  62. position: relative;
  63. }
  64.  
  65. .guilds-wrapper .guilds .dms {
  66. width: 100%;
  67. display: flex;
  68. flex-flow: row wrap;
  69. }
  70.  
  71. .guilds-wrapper .guilds .dms .guild {
  72. left: 0;
  73. }
  74.  
  75. .message-group .accessory{
  76. display: flex;
  77. flex-flow: row wrap;
  78. }
  79. .message-group .accessory>*:not(:last-of-type){
  80. margin-right:10px;
  81. }
  82. .message-group .accessory>*{
  83. margin-top:5px;
  84. }
  85. .reactions{
  86. width:100%;
  87. flex:100%;
  88. order:9999999999;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement