Update css font stack

This commit is contained in:
Rico Sta. Cruz 2016-06-29 17:50:06 +08:00
parent 817ce75db1
commit 06cf032c7a
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
3 changed files with 27 additions and 3 deletions

View File

@ -3,6 +3,6 @@ title: "CSS: System font stack"
category: CSS category: CSS
--- ---
``` > font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
``` Reference: <https://medium.com/design/system-shock-6b1dc6d6596f>

23
docker-compose.md Normal file
View File

@ -0,0 +1,23 @@
---
title: docker-compose
category: Devops
---
```yaml
# docker-compose.yml
version: '2'
services:
web:
build: .
ports:
- "5000:5000"
volumes:
- .:/code
redis:
image: redis
```
```sh
docker-compose up
```

1
ets.md
View File

@ -36,3 +36,4 @@ iex> table = :ets.new(:my_table, [:set, :protected])
## References ## References
* <http://erlang.org/doc/man/ets.html> * <http://erlang.org/doc/man/ets.html>
* <http://learnyousomeerlang.com/ets>