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.
47 lines
1.3 KiB
47 lines
1.3 KiB
/* === Silver Circle Down Arrow ==*/ |
|
.mblDomButtonSilverCircleDownArrow { |
|
position: relative; |
|
width: 30px; |
|
height: 30px; |
|
} |
|
.mblDomButtonSilverCircleDownArrow > 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%); |
|
} |
|
.mblDomButtonSilverCircleDownArrow > div > div { |
|
position: relative; |
|
top: 3px; |
|
left: 3px; |
|
width: 20px; |
|
height: 20px; |
|
border-radius: 10px; |
|
background: -webkit-gradient(linear, left top, left bottom, from(#979797), to(#616161)); |
|
background: linear-gradient(to bottom, #979797 0%, #616161 100%); |
|
} |
|
.mblDomButtonSilverCircleDownArrow > div > div > div { |
|
position: absolute; |
|
left: 0px; |
|
clip: rect(6px 50px 40px 0px); |
|
} |
|
.mblDomButtonSilverCircleDownArrow > div > div > div > div { |
|
position: absolute; |
|
top: -5px; |
|
left: 1px; |
|
width: 18px; |
|
height: 18px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: #d1d1d1; |
|
border-top: 1px solid #4a5a71; |
|
-webkit-transform: scaleX(0.7) rotate(45deg); |
|
transform: scaleX(0.7) rotate(45deg); |
|
}
|
|
|