discourse/app/assets/stylesheets/common/base/user-badges.scss

107 lines
1.7 KiB
SCSS
Raw Normal View History

2014-04-16 14:49:28 -04:00
/* Default badge styles. */
2014-04-16 06:02:57 -04:00
.user-badge {
padding: 3px 8px;
color: darken($primary, 40%);;
border: 1px solid lighten($primary, 60%);
font-size: $base-font-size * 0.86;
2014-04-16 06:02:57 -04:00
line-height: 16px;
margin: 0;
display: inline-block;
background-color: $secondary;
2014-06-07 14:47:33 -04:00
margin-bottom: 3px;
2014-04-16 06:02:57 -04:00
.fa {
padding-right: 3px;
font-size: 1.4em;
vertical-align: bottom;
2014-04-16 06:02:57 -04:00
}
&.badge-type-gold .fa {
color: #ffd700;
}
&.badge-type-silver .fa {
color: #c0c0c0;
}
&.badge-type-bronze .fa {
color: #cd7f32;
}
}
2014-04-16 14:49:28 -04:00
/* User badge listing. */
.user-badges-list {
text-align: center;
.user-badge {
max-width: 80px;
text-align: center;
vertical-align: top;
margin: 10px;
border: none;
.fa {
display: block;
font-size: 50px;
margin-bottom: 5px;
}
2014-05-21 03:22:42 -04:00
.count {
display: block;
font-size: 0.8em;
color: scale-color($primary, $lightness: 50%);
}
2014-04-16 14:49:28 -04:00
}
}
/* Badge listing in /badges. */
table.badges-listing {
2014-04-16 10:56:11 -04:00
margin: 20px 0;
border-bottom: 1px solid $primary;
.user-badge {
font-size: $base-font-size;
}
td {
padding: 10px 20px;
}
td.grant-count {
font-size: 0.8em;
color: $primary;
2014-04-17 23:49:10 -04:00
text-align: right;
}
td.badge, td.grant-count {
white-space: nowrap;
}
tr {
border-top: 1px solid $primary;
}
}
/* /badges/:id/:slug page styling. */
.show-badge {
.badge-user {
display: inline-block;
2014-05-15 21:08:06 -04:00
text-align: center;
width: 100px;
padding: 5px 10px;
2014-05-15 21:08:06 -04:00
margin-bottom: 10px;
.details {
margin: 0 10px;
padding-top: 3px;
2014-05-15 21:08:06 -04:00
color: $primary;
}
2014-05-15 21:08:06 -04:00
.date {
display: block;
2014-05-15 21:08:06 -04:00
color: lighten($primary, 40%);
font-size: 10px;
}
}
}