diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62c8935 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/ \ No newline at end of file diff --git a/README.md b/README.md index 32f7e4b..63ed958 100644 --- a/README.md +++ b/README.md @@ -1 +1,12 @@ # Projektmanagement Game + + +## Deploy +``` +docker run -d -it --rm \ + --publish 8181:80 \ + --volume :/usr/share/nginx/html \ + nginx +``` + +Replace `` with the absolute path of your repository. \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..36414cc --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + Projektmanagement Game + + + + + + +
+
+ +
Projektmanagement Game
+
more_vert
+
+
+
+ +
+
+ +
+ + + + + \ No newline at end of file diff --git a/static/css/components.css b/static/css/components.css new file mode 100644 index 0000000..8e5b26d --- /dev/null +++ b/static/css/components.css @@ -0,0 +1,20 @@ +body { + padding: 0; + margin: 0; +} + +.material-icon { + font-family: Material Icons,sans-serif !important; + font-weight: 400; + font-style: normal; + font-size: 24px; + line-height: 1; + letter-spacing: normal; + text-transform: none; + display: inline-block; + white-space: nowrap; + word-wrap: normal; + direction: ltr; + -webkit-font-feature-settings: "liga"; + -webkit-font-smoothing: antialiased; +} \ No newline at end of file diff --git a/static/css/header.css b/static/css/header.css new file mode 100644 index 0000000..db68018 --- /dev/null +++ b/static/css/header.css @@ -0,0 +1,35 @@ +.app-header { + box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); + overflow: hidden; + -webkit-user-select: none; + background-color: #7d7d7d; + color: #ffffff; + display: grid; + grid-gap: 5%; + grid-template-columns: 25% 40% 25%; + height: auto; + max-height: 100px; + padding-top: 10px; + padding-bottom: 10px; +} + +.logo { + grid-column: 1; +} + +.title { + grid-column: 2; + text-align: center; + display: flex; + justify-content: center; + align-items: center; + font-size: 2em; +} + +.help { + grid-column: 3; + display: flex; + justify-content: right; + align-items: center; + margin-right: 10px; +} \ No newline at end of file diff --git a/static/css/index.css b/static/css/index.css new file mode 100644 index 0000000..e69de29 diff --git a/static/js/index.js b/static/js/index.js new file mode 100644 index 0000000..e69de29