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

259 lines
4.1 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;
2014-08-06 09:31:13 -04:00
color: $primary;
2017-06-11 22:20:14 -04:00
border: 1px solid $primary-low;
2014-06-19 14:04:23 -04:00
line-height: 19px;
2014-04-16 06:02:57 -04:00
display: inline-block;
background-color: $secondary;
margin: 0 0 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
}
img {
height: 16px;
width: 16px;
}
2014-04-16 06:02:57 -04:00
&.badge-type-gold .fa {
2016-04-05 03:05:38 -04:00
color: rgb(231, 195, 0) !important;
2014-04-16 06:02:57 -04:00
}
&.badge-type-silver .fa {
2016-03-17 18:29:39 -04:00
color: #c0c0c0 !important;
2014-04-16 06:02:57 -04:00
}
&.badge-type-bronze .fa {
2016-03-17 18:29:39 -04:00
color: #cd7f32 !important;
2014-04-16 06:02:57 -04:00
}
}
2015-11-05 04:51:05 -05:00
@media all and (max-width: 750px) {
.show-badge .user-badge-with-posts .badge-user a.post-link {
width: auto;
}
.show-badge div.badge-user {
padding: 0;
}
.badges-listing {
display: block;
.info, .grant-count {
text-align: left;
}
.row > div.info { display: none; }
.row {
display: block;
> div {
display: block;
margin-top: 10px;
}
}
}
}
2016-03-30 12:05:16 -04:00
.show-badge .badge-user-info {
.earned {
font-size: 1.3em;
margin-bottom: 1em;
}
}
.show-badge .single-user {
margin-left: 2%;
padding-bottom: 20px;
.load-more {
padding-top: 30px;
display: block;
font-size: 1.2em;
}
}
.show-badge .single-user .badge-user {
padding-left: 0;
text-align: left;
display: block;
margin: 20px 0;
.badge-info {
display: none;
}
.date {
display: inline-block;
font-size: 1.1em;
margin-left: 10px;
}
.post-link {
font-size: 1.3em;
width: 500px;
margin: 0;
padding: 0;
}
width: 800px;
&:after {
content: "";
clear: both;
display: table;
}
}
.long-description.banner {
width: 88%;
2016-03-23 02:27:03 -04:00
margin-bottom: 15px;
margin-top: 15px;
}
.badge-card {
position: relative;
display: inline-block;
2017-06-11 22:20:14 -04:00
background-color: $primary-low;
margin-right: 5px;
margin-bottom: 10px;
box-shadow: 1px 1px 3px rgba(0.0, 0.0, 0.0, 0.2);
.check-display {
position: absolute;
left: 5px;
top: 5px;
}
.grant-count {
position: absolute;
right: 5px;
top: 5px;
font-weight: bold;
2017-06-11 22:20:14 -04:00
color: $primary-medium;
font-size: 1.2em;
}
.badge-contents {
display: flex;
flex-direction: row;
min-height: 128px;
height: 100%;
.badge-icon {
min-width: 90px;
display: flex;
align-items: center;
justify-content: center;
2017-06-11 22:20:14 -04:00
background-color: $primary-low;
font-size: 3em;
2016-03-28 14:39:55 -04:00
img {
max-width: 80px;
2016-03-30 16:06:17 -04:00
max-height: 80px;
2016-03-28 14:39:55 -04:00
}
&.badge-type-gold .fa {
2016-04-05 03:05:38 -04:00
color: rgb(231, 195, 0) !important;
}
&.badge-type-silver .fa {
color: #c0c0c0 !important;
}
&.badge-type-bronze .fa {
color: #cd7f32 !important;
}
}
.badge-info {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
color: $primary;
h3 {
2016-08-11 12:59:54 -04:00
margin-bottom: 0.4em;
}
}
}
}
.badge-card.medium {
2016-03-25 16:10:21 -04:00
width: 350px;
2016-03-28 14:39:55 -04:00
vertical-align: top;
}
2016-03-30 12:05:16 -04:00
@media all and (max-width: 320px) {
.badge-card.medium {
width: 100%;
}
}
.badge-card.large {
width: 750px;
}
.badge-groups {
margin: 20px 0;
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
h3 {
margin-bottom: 1.0em;
}
}
.badge-grouping {
margin-bottom: 1.5em;
}
.show-badge-details {
display: flex;
flex-direction: row;
margin-bottom: 2em;
margin-top: 1em;
.badge-grant-info {
display: flex;
align-items: center;
margin-left: 1em;
&.hidden {
display: none;
}
}
.grant-info-item {
margin-bottom: 1em;
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
}
.badge-title .form-horizontal .controls {
margin-left: 20px;
}
.close-btn {
margin: -20px 0 0 20px;
}
}
.check-display {
display: inline-block;
width: 18px;
border-radius: 10px;
text-align: center;
.fa {
font-size: 0.9em;
color: $secondary;
}
}
.check-display.status-checked {
2016-03-25 17:03:00 -04:00
background-color: $success;
}
.check-display.status-unchecked {
background-color: $danger;
}
.hyperlink {
cursor: pointer;
}