blob: 0769c277814e21f4bed8097e88a4bf61c5460740 (
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 Gray Button ==*/
.mblDomButtonSilverCircleGrayButton {
position: relative;
width: 30px;
height: 30px;
}
.mblDomButtonSilverCircleGrayButton > 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));
}
.mblDomButtonSilverCircleGrayButton > div > div {
position: relative;
top: 6px;
left: 6px;
width: 12px;
height: 12px;
border: 1px inset #AEAEAE;
-webkit-border-radius: 7px;
background: -webkit-gradient(linear, left top, left bottom, from(#D4D4D4), to(#BABABA));
}
|