index.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // Forum Index
  3. // --------------------------------------------------
  4. // Ranks online list
  5. //
  6. //==
  7. .ranks-online {
  8. .rank-online {
  9. margin-bottom: @line-height-computed;
  10. h3 {
  11. margin-top: 0px;
  12. color: @text-muted;
  13. font-size: @font-size-large;
  14. }
  15. ul {
  16. background-color: @panel-bg;
  17. border: 1px solid @panel-default-border;
  18. border-radius: @border-radius-base;
  19. li {
  20. a {
  21. border-bottom: solid 1px @panel-inner-border;
  22. display: block;
  23. padding: @padding-small-vertical @padding-small-horizontal;
  24. font-size: @font-size-large;
  25. img {
  26. border-radius: @border-radius-small;
  27. height: 25px;
  28. margin-top: -3px;
  29. margin-right: @padding-small-vertical * 0.7;
  30. }
  31. span {
  32. position: relative;
  33. bottom: 1px;
  34. }
  35. small {
  36. background-color: @panel-bg;
  37. border-radius: @border-radius-small;
  38. float: right;
  39. padding: @padding-xs-vertical @padding-xs-horizontal;
  40. position: relative;
  41. top: 2px;
  42. color: @panel-bg;
  43. font-size: @font-size-base;
  44. }
  45. }
  46. &:last-child {
  47. a {
  48. border-bottom: none;
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }