mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
/* General count styles |
|
-------------------------------------------------- */ |
|
|
|
[class*="count"] { |
|
display: inline-block; |
|
padding: 4px 9px; |
|
font-size: 12px; |
|
font-weight: bold; |
|
line-height: 13px; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, .3); |
|
border-radius: 100px; |
|
} |
|
|
|
/* Count modifiers |
|
-------------------------------------------------- */ |
|
|
|
/* Overriding styles for counts with modifiers */ |
|
.count-main, |
|
.count-positive, |
|
.count-negative { |
|
color: #fff; |
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, .3); |
|
} |
|
|
|
/* Main count */ |
|
.count-main { |
|
background-color: #1eafe7; |
|
background-image: -webkit-linear-gradient(top, #1eafe7 0, #1a97c8 100%); |
|
background-image: linear-gradient(to bottom, #1eafe7 0, #1a97c8 100%); |
|
} |
|
|
|
/* Positive count */ |
|
.count-positive { |
|
background-color: #34ba15; |
|
background-image: -webkit-linear-gradient(top, #34ba15 0, #2da012 100%); |
|
background-image: linear-gradient(to bottom, #34ba15 0, #2da012 100%); |
|
} |
|
|
|
/* Negative count */ |
|
.count-negative { |
|
background-color: #e71e1e; |
|
background-image: -webkit-linear-gradient(top, #e71e1e 0,#c71a1a 100%); |
|
background-image: linear-gradient(to bottom, #e71e1e 0, #c71a1a 100%); |
|
} |