diff --git a/README.md b/README.md index 1c6a344..8c6bb3c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Static Hoster Host your generated Static Pages + +Thanks for the Gopher on the Start-Page, its made with [gopherize.me](https://github.com/matryer/gopherize.me) by [matryer](https://github.com/matryer) diff --git a/dev/docker/images/production/html/Go-Logo_Aqua.svg b/dev/docker/images/production/html/Go-Logo_Aqua.svg new file mode 100644 index 0000000..6a814c7 --- /dev/null +++ b/dev/docker/images/production/html/Go-Logo_Aqua.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dev/docker/images/production/html/OpenSans-ExtraBold.ttf b/dev/docker/images/production/html/OpenSans-ExtraBold.ttf new file mode 100644 index 0000000..08d7185 Binary files /dev/null and b/dev/docker/images/production/html/OpenSans-ExtraBold.ttf differ diff --git a/dev/docker/images/production/html/OpenSans-Regular.ttf b/dev/docker/images/production/html/OpenSans-Regular.ttf new file mode 100644 index 0000000..1dc226d Binary files /dev/null and b/dev/docker/images/production/html/OpenSans-Regular.ttf differ diff --git a/dev/docker/images/production/html/gopherPride.png b/dev/docker/images/production/html/gopherPride.png new file mode 100644 index 0000000..0d59448 Binary files /dev/null and b/dev/docker/images/production/html/gopherPride.png differ diff --git a/dev/docker/images/production/html/index.html b/dev/docker/images/production/html/index.html new file mode 100644 index 0000000..d5698c0 --- /dev/null +++ b/dev/docker/images/production/html/index.html @@ -0,0 +1,23 @@ + + + + + + + + Static Hoster + + +
+
+
+

You are ready to

+ The Golang logo +
+

Now upload some files to Route with a HTTP push request.

+
+ A Golang gopher with a pride shirt +
+
+ + \ No newline at end of file diff --git a/dev/docker/images/production/html/style.css b/dev/docker/images/production/html/style.css new file mode 100644 index 0000000..17e6193 --- /dev/null +++ b/dev/docker/images/production/html/style.css @@ -0,0 +1,61 @@ +@font-face { + font-family: 'Open Sans'; + src: url(OpenSans-ExtraBold.ttf); + font-weight: 900; +} + +@font-face { + font-family: 'Open Sans'; + src: url(OpenSans-Regular.ttf); + font-weight: 400; +} + +* { + margin: 0; + padding: 0; +} + +html { + font-family: 'Open Sans', sans-serif; +} + +body { + height: 100vh; + width: 100vw; + display: grid; + grid-template-rows: 60vh 40vh; + grid-template-columns: 100vw; + grid-template-areas: + "top" + "bottom"; +} + +.topBox { + grid-area: top; + display: flex; + color: #FFFFFF; + flex-direction: column; + align-items: center; + justify-content: space-between; + background-color: #5abad3; +} + +.topText>.heading { + font-weight: 900; + display: flex; + justify-content: center; + align-items: center; +} + +.topText>.heading>img { + width: 6rem; +} + +#gopherImg { + max-height: 60%; +} + +.bottomBox { + grid-area: bottom; + background-color: #08667e; +} \ No newline at end of file