Merge pull request #82 from sharetribe/font

Add Chalkboard font (fallback to Comic Sans MS)
This commit is contained in:
Mikko Koski 2017-03-23 11:12:34 +02:00 committed by GitHub
commit 7c5610c49c

View file

@ -1,7 +1,15 @@
@import "sanitize.css";
html {
font-family: sans-serif;
/* Base font */
html, input, button {
/*
Use Chalkboard font. This font is available in Mac OSX. Fallback
to Comic Sans MS, "although it is not a perfect substitute font
since the two are not metrically compatible".
See: https://en.wikipedia.org/wiki/Chalkboard_(typeface)
*/
font-family: "Chalkboard", "Comic Sans MS", sans-serif;
}
ul {
@ -34,7 +42,6 @@ button {
margin: 1rem 0;
background-color: #eee;
border: 1px solid #ddd;
font-family: sans-serif;
&:hover {
background-color: #ddd;