diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2014-03-01 18:04:56 -0500 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2014-03-01 18:04:56 -0500 |
commit | 143571f43a0b1f505638d5225838551b556f222e (patch) | |
tree | efbbd50a972cad273d31edab21fa68f3a5f9e4f2 | |
parent | ebee1ff9e487b876e7d84cac5f1dfbc15a51a7dc (diff) | |
download | html5ks-143571f43a0b1f505638d5225838551b556f222e.tar.xz html5ks-143571f43a0b1f505638d5225838551b556f222e.zip |
misc css changes
-rw-r--r-- | www/css/font/playtime-webfont.eot | bin | 0 -> 96232 bytes | |||
-rw-r--r-- | www/css/index.css | 37 |
2 files changed, 16 insertions, 21 deletions
diff --git a/www/css/font/playtime-webfont.eot b/www/css/font/playtime-webfont.eot Binary files differnew file mode 100644 index 0000000..3026614 --- /dev/null +++ b/www/css/font/playtime-webfont.eot diff --git a/www/css/index.css b/www/css/index.css index 412ffb3..f46f79b 100644 --- a/www/css/index.css +++ b/www/css/index.css @@ -1,23 +1,16 @@ /* font-face */ @font-face { font-family: "Playtime"; - src: url("font/playtime-webfont.woff") format('woff'), - url("font/playtime-webfont.ttf") format('ttf'), + src: url("font/playtime-webfont.eot?") format('eot'), + url("font/playtime-webfont.woff") format('woff'), + url("font/playtime-webfont.ttf") format('truetype'), url("font/playtime-webfont.svg") format('svg'); } -/* nothing actually uses this -@font-face { - font-family: "Gentium"; - src: url("font/GentiumPlus.svg"); - src: url("font/GentiumPlus.ttf"); - src: url("font/GentiumPlus.woff"); -} -*/ /* general styling */ * { - -moz-user-select: -moz-none; -webkit-user-select: none; + -moz-user-select: -moz-none; -ms-user-select: none; user-select: none; outline: none; @@ -44,7 +37,7 @@ h2 { display: none; cursor: auto; } -html.no-js #interstitial { +.no-js #interstitial { display: block; } #warn { @@ -60,18 +53,18 @@ html.no-js #interstitial { width: 600px; z-index: 100; } -html.no-js #warn li { display: none; } -html.js #warn li#js { display: none; } - #warn li#ie { display: none; } -html.video #warn li#video { display: none; } -html.audio #warn li#audio { display: none; } - #warn li#opus { display: none; } -html.fontface #warn li#fontface { display: none; } -html.csstransforms #warn li#csstransforms { display: none; } +.no-js #warn li { display: none; } +.js #warn #js { display: none; } + #warn #ie { display: none; } +.video #warn #video { display: none; } +.audio #warn #audio { display: none; } + #warn #opus { display: none; } +.fontface #warn #fontface { display: none; } +.csstransforms #warn #csstransforms { display: none; } #gotit { text-align: center; } -html.no-js #gotit { +.no-js #gotit { display: none; } @@ -420,5 +413,7 @@ input[type="checkbox"] + span:before { display: none; opacity: 0; -webkit-transition: opacity 2s; + -moz-transition: opacity 2s; + -o-transition: opacity 2s; transition: opacity 2s; } |