Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

89 linhas
1.1 KiB

  1. @import "variables";
  2. .avatar {
  3. display: inline-block;
  4. vertical-align: middle;
  5. }
  6. .avatar-frame {
  7. display: inline-block;
  8. width: 100%;
  9. padding: 50% 0px;
  10. // TODO: Remove
  11. background-color: var(--pink-200);
  12. background-size: cover;
  13. background-repeat: no-repeat;
  14. background-position: center center;
  15. border-radius: 50%;
  16. }
  17. .avatar img {
  18. max-width: 100%;
  19. max-height: 100%;
  20. border-radius: 50%;
  21. }
  22. .avatar-empty {
  23. border: 1px dashed #d1d8dd;
  24. border-radius: 50%;
  25. }
  26. .avatar-small {
  27. width: 36px;
  28. height: 36px;
  29. .standard-image {
  30. font-size: 14px;
  31. }
  32. }
  33. .avatar-medium {
  34. width: 36px;
  35. height: 36px;
  36. .standard-image {
  37. font-size: 18px;
  38. }
  39. }
  40. .avatar-large {
  41. width: 72px;
  42. height: 72px;
  43. .standard-image {
  44. font-size: 36px;
  45. }
  46. }
  47. .avatar-xl {
  48. width: 108px;
  49. height: 108px;
  50. .standard-image {
  51. font-size: 36px;
  52. }
  53. }
  54. .avatar-xs {
  55. width: 17px;
  56. height: 17px;
  57. .standard-image {
  58. font-size: 9px;
  59. }
  60. }
  61. .standard-image {
  62. width: 100%;
  63. height: 0;
  64. padding: 50% 0;
  65. display: inline-block;
  66. text-align: center;
  67. border-radius: 50%;
  68. font-size: 14px;
  69. line-height: 0px;
  70. //color: #fff;
  71. color: $text-muted;
  72. border: 1px solid $border-color;
  73. font-weight: normal;
  74. }