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.
51 lines
1.1 KiB
51 lines
1.1 KiB
/* === Black Circle Cross Button ==*/ |
|
.mblDomButtonBlackCircleCross { |
|
position: relative; |
|
width: 29px; |
|
height: 29px; |
|
} |
|
.mblDomButtonBlackCircleCross > div { |
|
position: relative; |
|
top: 3px; |
|
left: 3px; |
|
width: 23px; |
|
height: 23px; |
|
background-color: white; |
|
border-radius: 12px; |
|
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5); |
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5); |
|
} |
|
.mblDomButtonBlackCircleCross > div > div { |
|
position: relative; |
|
top: 2px; |
|
left: 2px; |
|
width: 19px; |
|
height: 19px; |
|
background-color: black; |
|
border-radius: 10px; |
|
} |
|
.mblDomButtonBlackCircleCross > div > div > div { |
|
position: absolute; |
|
top: 8px; |
|
left: 3px; |
|
width: 13px; |
|
height: 3px; |
|
margin: 0px; |
|
font-size: 1px; |
|
border-style: none; |
|
background-color: white; |
|
-webkit-transform: rotate(45deg); |
|
transform: rotate(45deg); |
|
border-radius: 1px; |
|
} |
|
.mblDomButtonBlackCircleCross > div > div > div > div { |
|
position: absolute; |
|
top: -5px; |
|
left: 5px; |
|
width: 3px; |
|
height: 13px; |
|
margin: 0px; |
|
font-size: 1px; |
|
background-color: white; |
|
border-radius: 1px; |
|
}
|
|
|