123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // Forum Index
- // --------------------------------------------------
- // Ranks online list
- //
- //==
- .ranks-online {
- .rank-online {
- margin-bottom: @line-height-computed;
- h3 {
- margin-top: 0px;
- color: @text-muted;
- font-size: @font-size-large;
- }
- ul {
- background-color: @panel-bg;
- border: 1px solid @panel-default-border;
- border-radius: @border-radius-base;
- li {
- a {
- border-bottom: solid 1px @panel-inner-border;
- display: block;
- padding: @padding-small-vertical @padding-small-horizontal;
- font-size: @font-size-large;
- img {
- border-radius: @border-radius-small;
- height: 25px;
- margin-top: -3px;
- margin-right: @padding-small-vertical * 0.7;
- }
- span {
- position: relative;
- bottom: 1px;
- }
- small {
- background-color: @panel-bg;
- border-radius: @border-radius-small;
- float: right;
- padding: @padding-xs-vertical @padding-xs-horizontal;
- position: relative;
- top: 2px;
- color: @panel-bg;
- font-size: @font-size-base;
- }
- }
- &:last-child {
- a {
- border-bottom: none;
- }
- }
- }
- }
- }
- }
|