diff --git a/index.html b/index.html new file mode 100644 index 0000000..36d7b13 --- /dev/null +++ b/index.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sampleGod_newAnimation.gif b/sampleGod_newAnimation.gif new file mode 100644 index 0000000..9ee3487 --- /dev/null +++ b/sampleGod_newAnimation.gif Binary files differ diff --git a/sampleGod_stay.gif b/sampleGod_stay.gif new file mode 100644 index 0000000..a24a43e --- /dev/null +++ b/sampleGod_stay.gif Binary files differ diff --git a/server.rb b/server.rb new file mode 100644 index 0000000..0c53c22 --- /dev/null +++ b/server.rb @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +# -*- coding: utf-8 -*- + +require 'webrick' + +server = WEBrick::HTTPServer.new(DocumentRoot: './', Port: 8888) +server.mount("/index.html", WEBrick::HTTPServlet::FileHandler, "index.html") +Signal.trap(:INT){server.shutdown} + +server.start diff --git a/style.css b/style.css new file mode 100644 index 0000000..5924535 --- /dev/null +++ b/style.css @@ -0,0 +1,6 @@ +/* -*- coding: utf-8 -*- */ + +body{ + margin: 0; + overflow: hidden; +}