暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_badge.scss 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*******************************
  2. badge style
  3. *******************************/
  4. .badge {
  5. position: absolute;
  6. text-align: center;
  7. padding: 5px;
  8. line-height: 1;
  9. font-size: 12px;
  10. z-index: 2;
  11. font-weight: fontweight(medium);
  12. text-transform: capitalize;
  13. }
  14. // theme1
  15. .theme1 {
  16. .badge-danger {
  17. color: $color-white;
  18. background-color: $theme-color !important;
  19. }
  20. }
  21. .badge-success {
  22. color: $color-white;
  23. background-color: $theme-color3 !important;
  24. }
  25. .cbdg1 {
  26. width: 20px;
  27. height: 20px;
  28. bottom: 10px;
  29. left: 15px;
  30. padding: 0px;
  31. line-height: 18px;
  32. @include border-radius(50%);
  33. }
  34. // theme1
  35. .theme1 {
  36. .cbdg1 {
  37. color: $color-white;
  38. background-color: $theme-color !important;
  39. }
  40. }
  41. .cb6 {
  42. display: inline-block;
  43. text-align: center;
  44. font-size: 18px;
  45. padding: 10px;
  46. }
  47. // badge position
  48. .top-left {
  49. top: 10px;
  50. left: 10px;
  51. }
  52. .top-right {
  53. @extend.top-left;
  54. left: auto;
  55. right: 10px;
  56. }
  57. /*******************************
  58. badge style END
  59. *******************************/