diff --git a/public/css/hennypenny.css b/public/css/hennypenny.css new file mode 100644 index 0000000..8905311 --- /dev/null +++ b/public/css/hennypenny.css @@ -0,0 +1,6 @@ +@font-face { + font-family: 'Henny_Penny'; + font-style: normal; + font-weight: 400; + src: local('Henny Penny'), local('HennyPenny-Regular'), url(../font/hennypenny.ttf) format('truetype'); +} diff --git a/public/font/hennypenny.ttf b/public/font/hennypenny.ttf new file mode 100644 index 0000000..cf2a5e4 Binary files /dev/null and b/public/font/hennypenny.ttf differ diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index 0baf7ed..0ea322e 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -17,6 +17,7 @@ %= stylesheet 'css/fontello.css' %= stylesheet 'css/animation.css' %= stylesheet 'css/uploader.css' + %= stylesheet 'css/hennypenny.css' %= stylesheet begin body { padding-top: 40px; @@ -36,6 +37,15 @@ margin-right: 8px; } + .hennypenny { + font-family: 'Henny_Penny', cursive; + font-size: 42px; + } + + .logo { + margin-right: 10px; + } + % if (config('always_encrypt')) { label.always-encrypt { display: none; @@ -59,10 +69,10 @@ % }
-