--- layout: post title: CSS App Store Badges image: teaser-appstorebadges.png author: Matthias Kretschmann date: 2015-09-13 15:55:18.418548000 +02:00 category: goodies tags: - css - svg --- The badges provided by all app store providers just don't play well together with their varying typography and different sizing. Only Apple provides a proper SVG source for their badge, Google doesn’t even provide a retina bitmap asset. On top of that, using svg or png assets makes localization a pain unless you want to manage multiple assets per language. So let's make them all visually unified, infinitely scalable, with pure text for easier localization and some web interaction styles. And while we’re at it: different sizes with the same markup by using some modifier classes.

Demo GitHub Codepen

# Styling Let’s be honest, Google, Amazon & Microsoft created just slight variations of the badge style established by Apple’s App Store badge. So it’s only natural to unify all badges by leaning more to Apple’s style in terms of typography. Apple uses Myriad Pro in their original badge which isn’t available for free web usage. So all buttons are just set in Apple’s San Francisco UI font with this funky font stack: ```css .badge { font-family: system, -apple-system, '.SFNSDisplay-Regular', 'San Francisco', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif; } ``` The first three values are grabbing the system installed version on OS X & iOS, the `San Franciso` value shamelessly references the `@font-face` imported files from Apple’s S3 account and if all that fails, the badges fall back to either Helvetica or Arial. Because of varying copy resulting in different badge widths, the only way to make them unified when they are stacked on top of each other, like in a mobile layout, was to make all of them the width of the widest one. This is [defined as a variable in the Stylus source](https://github.com/kremalicious/appstorebadges/blob/master/src/styl/_variables.styl#L12) and set as `min-height` so the badges can grow, like with bigger font sizes or because of localization. Here's a live demo of the default sizes: Download on the App Store Get it on Google Play Available at Amazon Download from Windows Store # Usage Install with npm: ```bash npm i appstorebadges --save ``` Or install with Bower: ```bash bower install appstorebadges --save ``` Or just directly link to the css file in the [GitHub repo](https://github.com/kremalicious/appstorebadges): ```html ``` ## HTML Markup This is the basic markup for all badges: ```html […] Download on the App Store ``` yielding in, here the iOS badge: Download on the App Store Only the icon and the copy change for each badge. To be able to style modify all colors, including the icon color easily with one variable change, using the SVG assets as `background-image` within `:before` or `:after` content wasn't feasible. So inline SVG it is, which allows easy styling via CSS. For maximum browser compatibility and simplicity, I just inlined the icon assets in all markup blocks. In a production environment you should create a sprite from them, reference them with the SVG `use` element and polyfill with [svg4everybody](https://github.com/jonathantneal/svg4everybody). ## Size Variations Just drop those modifier classes on the `badge` base element: - `badge--small` - `badge--tiny`