You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
819 B
29 lines
819 B
/* === Red Badge ==*/ |
|
.mblDomButtonRedBadge { |
|
position: relative; |
|
width: 29px; |
|
height: 29px; |
|
text-align: right; |
|
font-family: Helvetica; |
|
font-size: 16px; |
|
font-weight: bold; |
|
} |
|
.mblDomButtonRedBadge > div { |
|
position: absolute; |
|
display: inline; |
|
padding: 0px 5px; |
|
top: 2px; |
|
right: 2px; |
|
color: white; |
|
border: 2px solid white; |
|
border-radius: 12px; |
|
text-align: center; |
|
background: -webkit-gradient(linear, left top, left bottom, from(#f5bdc0), to(#ae0001), color-stop(0.5, #e44149), color-stop(0.5, #de151f)); |
|
background: linear-gradient(to bottom, #f5bdc0 0%, #e44149 50%, #de151f 50%, #ae0001 100%); |
|
background-clip: padding-box; |
|
-webkit-box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5); |
|
box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5); |
|
} |
|
.mblDomButtonRedBadge > div > div { |
|
display: none; |
|
}
|
|
|