diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-07-15 15:04:52 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-07-15 15:04:52 -0400 |
commit | 629e91372588758c8de74f7ab196f63f43efd9b5 (patch) | |
tree | e959b4edc80a63187c40466ba418d3425bedbdaf | |
parent | 90ba186bc053f82fe3dd759124edd26a9268ceb1 (diff) | |
download | html5ks-629e91372588758c8de74f7ab196f63f43efd9b5.tar.xz html5ks-629e91372588758c8de74f7ab196f63f43efd9b5.zip |
index.css: fix checkbox, try to fix font-face
-rw-r--r-- | www/css/index.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/css/index.css b/www/css/index.css index 2883101..f664438 100644 --- a/www/css/index.css +++ b/www/css/index.css @@ -2,9 +2,9 @@ @font-face { font-family: "Playtime"; /* src: url("playtime.ttf"); */ - src: url("font/PlaytimeWithHotToddies.svg"); - src: url("font/PlaytimeWithHotToddies.ttf"); - src: url("font/PlaytimeWithHotToddies.woff"); + src: url("font/PlaytimeWithHotToddies.woff") format('woff'), + url("font/PlaytimeWithHotToddies.ttf") format('ttf'), + url("font/PlaytimeWithHotToddies.svg") format('svg'); } @font-face { font-family: "Gentium"; @@ -53,7 +53,7 @@ input[type="checkbox"] + span:before { height: 19px; width: 20px; content: ""; - background-position: left -2px top -3px; + background-position: left bottom; background-repeat: no-repeat; background-image: url("../dump/ui/bt-cf-unchecked.png"); } |