1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| @import "../css3.less";
| /* === 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;
| .box-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
| .background-linear-gradient-top-bottom(#efefef, #c2c2c2);
| }
| .mblDomButtonSilverCircleGreenButton > div > div {
| position: relative;
| top: 6px;
| left: 6px;
| width: 12px;
| height: 12px;
| border: 1px inset #1b991c;
| border-radius: 7px;
| .background-radial-gradient-center(6, #17df25, #1ba51c);
| }
|
|