Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1.  
  2. .smth { padding: 60px 10px; text-align: center; background-color: #666273; color: gray; border: 1px solid gray; height: 800px;}
  3.  
  4. .container-fluid { margin: auto; height: 800px;}
  5.  
  6. .navbar { background-color: #CD7768; }
  7.  
  8. body { background-color: #444054; }
  9.  
  10. .profile-image {
  11. width: 50px;
  12. height: 50px;
  13. border-radius: 40px;
  14. }
  15.  
  16. .settings-tray {
  17. background: #eee;
  18. padding: 10px 15px;
  19. border-radius: 7px;
  20.  
  21. .no-gutters {
  22. padding: 0;
  23. }
  24.  
  25. &--right {
  26. float: right;
  27.  
  28. i {
  29. margin-top: 10px;
  30. font-size: 25px;
  31. color: gray;
  32. margin-left: 14px;
  33. transition: .3s;
  34.  
  35. &:hover {
  36. color: $blue;
  37. cursor: pointer;
  38. }
  39. }
  40. }
  41. }
  42.  
  43. .search-box {
  44. background: #fafafa;
  45. padding: 10px 13px;
  46. }
  47. .input-wrapper {
  48.  
  49. border-radius: 40px;
  50. }
  51. i {
  52. color: grey;
  53. margin-left: 7px;
  54. vertical-align: middle;
  55. }
  56.  
  57. input {
  58. border: none;
  59. border-radius: 30px;
  60. width: 80%;
  61. }
  62. &::placeholder {
  63. color: #e3e3e3;
  64. font-weight: 300;
  65. margin-left: 20px;
  66. }
  67.  
  68. &:focus {
  69. outline: none;
  70. }
  71.  
  72. .friend-drawer {
  73. padding: 10px 15px;
  74. display: flex;
  75. vertical-align: baseline;
  76. background: #fff;
  77. transition: .3s ease;
  78.  
  79. &--grey {
  80. background: #eee;
  81. }
  82.  
  83. .text {
  84. margin-left: 12px;
  85. width: 70%;
  86.  
  87. h6 {
  88. margin-top: 6px;
  89. margin-bottom: 0;
  90. }
  91.  
  92. p {
  93. margin: 0;
  94. }
  95. }
  96.  
  97.  
  98.  
  99. &--onhover:hover {
  100. background: blue;
  101. cursor: pointer;
  102.  
  103. p,
  104. h6,
  105. .time {
  106. color: #fff !important;
  107. }
  108. }
  109. }
  110.  
  111. hr {
  112. margin: 5px auto;
  113. width: 60%;
  114. }
  115.  
  116. .chat-bubble {
  117. display: inline-block;
  118. width: auto;
  119. background: black !important;
  120. padding: 10px 14px;
  121. background: #eee;
  122. margin: 10px 30px;
  123. border-radius: 9px;
  124. position: relative;
  125.  
  126. &:after {
  127. content: '';
  128. position: absolute;
  129. top: 50%;
  130. width: 0;
  131. height: 0;
  132. border: 20px solid transparent;
  133. border-bottom: 0;
  134. margin-top: -10px;
  135. }
  136.  
  137. &--left, &:after {
  138. left: 0;
  139. border-right-color: #eee;
  140. border-left: 0;
  141. margin-left: -20px;
  142. }
  143.  
  144. &--right, &:after {
  145. right: 0;
  146. border-left-color: $blue;
  147. border-right: 0;
  148. margin-right: -20px;
  149. }
  150.  
  151.  
  152. .offset-md-9,
  153. .chat-bubble {
  154. background: blue;
  155. color: #fff;
  156. }
  157. }
  158.  
  159. input {
  160. margin: 0 10px;
  161. padding: 6px 2px;
  162. }
  163.  
  164. i {
  165. color: grey;
  166. font-size: 30px;
  167. vertical-align: middle;
  168. }
  169. &:last-of-type {
  170. margin-left: 25px;
  171. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement