-
Notifications
You must be signed in to change notification settings - Fork 16
/
badger.css
46 lines (46 loc) · 1011 Bytes
/
badger.css
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.badger-outter
{
background:#fff;
border:1px solid #ccc;
min-width: 36px;
height: 36px;
border-radius: 18px;
-moz-border-radius: 18px;
-webkit-border-radius: 18px;
box-shadow:0px 1px 5px #ccc;
-moz-box-shadow:0px 1px 5px #ccc;
-webkit-box-shadow:0px 1px 5px #ccc;
float:left;
position:absolute;
top:-18px;
right:-18px;
z-index:9999;
}
.badger-inner
{
min-width: 30px;
height: 30px;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
background: #f13c31;
background: -moz-linear-gradient(100% 100% 90deg, #f13c31, #f79690);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f79690), to(#f13c31));
background: -webkit-linear-gradient(#f79690, #f13c31);
background: -o-linear-gradient(#f79690, #f13c31);
margin:3px;
z-index:99999;
}
.badger-badge
{
color:#fff;
padding:2px 5px;
margin:0;
text-align:center;
text-shadow:0px -1px 1px #e01b0f;
z-index:999999;
}
.badger-text
{ font-size:18px; }
.badger-number
{ font-size:22px; }