From: Dylan Lloyd Date: Tue, 19 Mar 2013 01:07:19 +0000 (-0400) Subject: added fonts, background and new html doctype X-Git-Url: https://disinclined.org/git/?a=commitdiff_plain;h=2200b6a7c2f59dedb309bfba1950e855ae9eab29;p=matrixnullspace.com.git added fonts, background and new html doctype --- diff --git a/fonts/inconsolata-webfont.eot b/fonts/inconsolata-webfont.eot new file mode 100644 index 0000000..8ceef1d Binary files /dev/null and b/fonts/inconsolata-webfont.eot differ diff --git a/fonts/inconsolata-webfont.svg b/fonts/inconsolata-webfont.svg new file mode 100644 index 0000000..a3804a2 --- /dev/null +++ b/fonts/inconsolata-webfont.svg @@ -0,0 +1,228 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Created by Raph Levien using his own tools and FontForge Copyright 2006 Raph Levien Released under the SIL Open Font License httpscriptssilorgOFL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/inconsolata-webfont.ttf b/fonts/inconsolata-webfont.ttf new file mode 100644 index 0000000..b31ef54 Binary files /dev/null and b/fonts/inconsolata-webfont.ttf differ diff --git a/fonts/inconsolata-webfont.woff b/fonts/inconsolata-webfont.woff new file mode 100644 index 0000000..70e6183 Binary files /dev/null and b/fonts/inconsolata-webfont.woff differ diff --git a/fonts/museo_slab_500-webfont.eot b/fonts/museo_slab_500-webfont.eot new file mode 100644 index 0000000..333b8b3 Binary files /dev/null and b/fonts/museo_slab_500-webfont.eot differ diff --git a/fonts/museo_slab_500-webfont.svg b/fonts/museo_slab_500-webfont.svg new file mode 100644 index 0000000..34cc4fb --- /dev/null +++ b/fonts/museo_slab_500-webfont.svg @@ -0,0 +1,231 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright c 2009 by Jos Buivenga All rights reserved +Designer : Jos Buivenga +Foundry : Jos Buivenga +Foundry URL : httpwwwexljbriscom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/museo_slab_500-webfont.ttf b/fonts/museo_slab_500-webfont.ttf new file mode 100644 index 0000000..d0d4121 Binary files /dev/null and b/fonts/museo_slab_500-webfont.ttf differ diff --git a/fonts/museo_slab_500-webfont.woff b/fonts/museo_slab_500-webfont.woff new file mode 100644 index 0000000..ccd4195 Binary files /dev/null and b/fonts/museo_slab_500-webfont.woff differ diff --git a/images/gray_jean.png b/images/gray_jean.png new file mode 100644 index 0000000..355fba2 Binary files /dev/null and b/images/gray_jean.png differ diff --git a/index.php b/index.php index d191c03..199bd3e 100644 --- a/index.php +++ b/index.php @@ -1,13 +1,12 @@ - - + - + + matrixnullspace + - matrixnullspace - +
@@ -20,7 +19,6 @@ example:
 2 3 5
 -4 2 3
 0 0 0
-
 

diff --git a/style.css b/style.css new file mode 100644 index 0000000..6bb5bd9 --- /dev/null +++ b/style.css @@ -0,0 +1,26 @@ +@font-face { + font-family: 'InconsolataMedium'; + src: url('/fonts/inconsolata-webfont.eot'); + src: url('/fonts/inconsolata-webfont.eot?#iefix') format('embedded-opentype'), + url('/fonts/inconsolata-webfont.woff') format('woff'), + url('/fonts/inconsolata-webfont.ttf') format('truetype'), + url('/fonts/inconsolata-webfont.svg#InconsolataMedium') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'MuseoSlab500'; + src: url('/fonts/museo_slab_500-webfont.eot'); + src: url('/fonts/museo_slab_500-webfont.eot?#iefix') format('embedded-opentype'), + url('/fonts/museo_slab_500-webfont.woff') format('woff'), + url('/fonts/museo_slab_500-webfont.ttf') format('truetype'), + url('/fonts/museo_slab_500-webfont.svg#MuseoSlab500') format('svg'); + font-weight: normal; + font-style: normal; +} + +body { + background-image: url('/images/gray_jean.png'); + font-family: 'InconsolataMedium'; +}