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.
30 lines
927 B
30 lines
927 B
/* === Silver Circle Green Button ==*/ |
|
.mblDomButtonSilverCircleGreenButton { |
|
position: relative; |
|
width: 30px; |
|
height: 30px; |
|
} |
|
.mblDomButtonSilverCircleGreenButton > div { |
|
position: relative; |
|
top: 0px; |
|
left: 0px; |
|
width: 26px; |
|
height: 26px; |
|
border: 1px solid #b5b6b5; |
|
border-radius: 13px; |
|
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5); |
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5); |
|
background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#c2c2c2)); |
|
background: linear-gradient(to bottom, #efefef 0%, #c2c2c2 100%); |
|
} |
|
.mblDomButtonSilverCircleGreenButton > div > div { |
|
position: relative; |
|
top: 6px; |
|
left: 6px; |
|
width: 12px; |
|
height: 12px; |
|
border: 1px inset #1b991c; |
|
border-radius: 7px; |
|
background: -webkit-gradient(radial, center center, 0, center center, 6, from(#17df25), to(#1ba51c)); |
|
background: radial-gradient(6px at center, #17df25 0%, #1ba51c 100%); |
|
}
|
|
|