diff options
| -rw-r--r-- | .gitlab-ci.yml | 14 | ||||
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | pages/css/style.css | 43 | ||||
| -rw-r--r-- | pages/index.html | 29 |
5 files changed, 92 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..39589ea --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: node:8 + +stages: + - deploy + +pages: + stage: deploy + script: + - mv pages public + artifacts: + paths: + - public + only: + - master diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f3e55..e829b9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.0.1] +### Added +- Gitlab pages support + ## 1.0.0 ### Added - Application SID Checking @@ -17,4 +21,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - This CHANGELOG - Readme +[1.0.1]: https://github.com/olivierlacan/keep-a-changelog/compare/1.0.0...1.0.1 [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/master...develop diff --git a/package.json b/package.json index 5bda8c4..164ac5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dead-drop", - "version": "1.0.0", + "version": "1.0.1", "description": "A voice communication system", "main": "lib/dead_drop.js", "repository": "git@github.com:rbdr/dead-drop.git", diff --git a/pages/css/style.css b/pages/css/style.css new file mode 100644 index 0000000..d3883fc --- /dev/null +++ b/pages/css/style.css @@ -0,0 +1,43 @@ +body { + background-color: #85CCDA; +} + +h1, .cta, .phone { + font-family: 'Bungee Shade', sans-serif; + text-align: center; + width: 75%; + margin: 0 auto; +} + +h1 { + font-size: 64pt; + color: #fff; + margin: 24px auto; +} + +p, ul { + font-size: 14pt; + font-family: 'Roboto', sans-serif; + margin: 0; + color: #4C5F65; +} + +.description { + text-align: center; + margin: 50px 0; +} + +.usage { + margin: 10px auto 50px; + width: 25%; +} + +.phone { + font-size: 48pt; +} + +.cta { + margin: 24px auto; + font-size: 48pt; + color: #fff; +} diff --git a/pages/index.html b/pages/index.html new file mode 100644 index 0000000..3b97c11 --- /dev/null +++ b/pages/index.html @@ -0,0 +1,29 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8"> + <meta name="description" content="A social network."> + + <title>dead drop</title> + + <link href="https://fonts.googleapis.com/css?family=Bungee+Shade|Roboto:300" rel="stylesheet"> + <link href="css/style.css" rel="stylesheet"> + + </head> + <body> + <h1>DEAD DROP</h1> + <p class="description"> + Buzón de voz colaborativo. Deja un mensaje. Escucha un mensaje al azar. + </p> + <ul class="usage"> + <li>Guarda recordatorios</li> + <li>Comparte tus secretos más oscuros</li> + <li>Canta una canción</li> + <li>Di lo que estás pensando</li> + <li>Comparte tus secretos menos oscuros</li> + <li>Solo escucha</li> + </ul> + <p class="phone">(33) 4160-0915</p> + <p class="cta">Llama Ahora!</p> + </body> +</html> |