12345678910111213141516171819202122232425262728293031323334353637 |
- /* === Green Circle Minus Buttons ==*/
- .mblDomButtonGreenCircleMinus {
- position: relative;
- width: 29px;
- height: 29px;
- }
- .mblDomButtonGreenCircleMinus > div {
- position: relative;
- top: 2px;
- left: 2px;
- width: 22px;
- height: 22px;
- border: 1px solid #B5B6B5;
- -webkit-border-radius: 12px;
- -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
- }
- .mblDomButtonGreenCircleMinus > div > div {
- position: relative;
- top: 2px;
- left: 2px;
- width: 18px;
- height: 18px;
- -webkit-border-radius: 9px;
- background: -webkit-gradient(linear, left top, left bottom, from(#7BE75A), to(#398C08), color-stop(0.5, #6BC642), color-stop(0.5, #4AAD21));
- }
- .mblDomButtonGreenCircleMinus > div > div > div {
- position: absolute;
- top: 8px;
- left: 3px;
- width: 12px;
- height: 3px;
- margin: 0px;
- font-size: 1px;
- border-style: none;
- background: white;
- }
|