1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-25 02:36:26 +02:00
blog/content/posts/2015-09-13-css-app-store-badges.md

82 lines
3.4 KiB
Markdown
Raw Normal View History

2015-09-13 22:20:58 +02:00
---
2018-07-19 02:22:01 +02:00
type: post
2015-09-13 22:20:58 +02:00
title: CSS App Store Badges
2018-07-17 23:26:36 +02:00
image: ../media/teaser-appstorebadges.png
2015-09-13 22:20:58 +02:00
author: Matthias Kretschmann
2015-09-13 23:55:00 +02:00
date: 2015-09-13 18:55:18.418548000 +02:00
2015-09-13 22:20:58 +02:00
tags:
2018-08-30 22:50:09 +02:00
- goodies
- css
- svg
2015-09-13 22:20:58 +02:00
---
The badges provided by all app store providers just don't play well together with their varying typography and different sizing. So let's make them all visually unified, infinitely scalable, with pure text for easier localization and some web interaction styles. And while were at it: different sizes with the same markup by using some modifier classes.
2015-09-13 22:20:58 +02:00
<p class="content-download">
<a class="btn-primary icon-eye" href="https://lab.kremalicious.com/appstorebadges/">Demo</a>
<a class="icon-github" href="https://github.com/kremalicious/appstorebadges/">GitHub</a>
<a href="http://codepen.io/kremalicious/details/EVVraP/">Codepen</a>
</p>
2018-09-29 02:54:31 +02:00
## Styling
2015-09-13 22:20:58 +02:00
Lets be honest, Google, Amazon & Microsoft created just slight variations of the badge style established by Apples App Store badge. So its only natural to unify all badges by leaning more to Apples style in terms of typography. Apple uses Myriad Pro in their original badge which isnt available for free web usage.
So all buttons are just set in Apples 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 Apples 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.
2018-09-29 02:54:31 +02:00
## Usage
2015-09-13 22:20:58 +02:00
Install with npm:
```shell
2015-09-13 22:20:58 +02:00
npm i appstorebadges --save
```
Or install with Bower:
```shell
2015-09-13 22:20:58 +02:00
bower install appstorebadges --save
```
Or just directly link to the css file in the [GitHub repo](https://github.com/kremalicious/appstorebadges):
```html
2015-09-14 00:28:07 +02:00
<link rel="stylesheet" href="https://rawgit.com/kremalicious/appstorebadges/master/dist/appstorebadges.min.css">
2015-09-13 22:20:58 +02:00
```
2018-09-29 02:54:31 +02:00
### HTML Markup
2015-09-13 22:20:58 +02:00
This is the basic markup for all badges:
```html
<a class="badge" href="#">
<svg class="badge__icon">[…]</svg>
<span class="badge__text">Download on the</span>
<span class="badge__storename">App Store</span>
</a>
```
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).
2018-09-29 02:54:31 +02:00
### Size Variations
2015-09-13 22:20:58 +02:00
Just drop those modifier classes on the `badge` base element:
- `badge--small`
- `badge--tiny`