_profile.scss 574 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // Pages: Profile
  3. //
  4. .profile-user-img {
  5. border: 3px solid $gray-500;
  6. margin: 0 auto;
  7. padding: 3px;
  8. width: 100px;
  9. }
  10. .profile-username {
  11. font-size: 21px;
  12. margin-top: 5px;
  13. }
  14. .post {
  15. border-bottom: 1px solid $gray-500;
  16. color: #666;
  17. margin-bottom: 15px;
  18. padding-bottom: 15px;
  19. &:last-of-type {
  20. border-bottom: 0;
  21. margin-bottom: 0;
  22. padding-bottom: 0;
  23. }
  24. .user-block {
  25. margin-bottom: 15px;
  26. width: 100%;
  27. }
  28. .row {
  29. width: 100%;
  30. }
  31. }
  32. @include dark-mode () {
  33. .post {
  34. color: $white;
  35. border-color: $gray-600;
  36. }
  37. }