blob: 2b590421fb947b0e8edc05fa48f06a73ce7f481f (
plain)
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
|
/* === 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;
-webkit-border-radius: 13px;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#C2C2C2));
}
.mblDomButtonSilverCircleGreenButton > div > div {
position: relative;
top: 6px;
left: 6px;
width: 12px;
height: 12px;
border: 1px inset #1B991C;
-webkit-border-radius: 7px;
background: -webkit-gradient(radial, center center, 0, center center, 6, from(#17DF25), to(#1BA51C));
}
|