From 9b5d90fe3671a4d13ef71e8666ba16782b64202a Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Tue, 5 Sep 2017 21:33:34 -0400 Subject: Initial commit --- .gitignore | 4 +++ CNAME | 1 + _config.yml | 18 +++++++++++ _layouts/master.html | 44 +++++++++++++++++++++++++++ bootstrap-override.scss | 18 +++++++++++ index.html | 27 +++++++++++++++++ medicmate.scss | 81 +++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 193 insertions(+) create mode 100644 .gitignore create mode 100644 CNAME create mode 100644 _config.yml create mode 100644 _layouts/master.html create mode 100644 bootstrap-override.scss create mode 100644 index.html create mode 100644 medicmate.scss diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e45023a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +Gemfile +Gemfile.lock +_site + diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..ed76afa --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.medicmate.io diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..0d49752 --- /dev/null +++ b/_config.yml @@ -0,0 +1,18 @@ +title: MedicMate - +email: info@medicmate.io +description: > + MedicMate is the mobile reference solution for EMS agencies. Get + real-time hospital divert status updates and see current travel times. + Agency administrators can customize the SOPs/SOGs available on devices, + as well as choosing from a selection of state-wide medical and MCI + protocols. +keywords: + - ems field guide + - ems protocol + - ems software + +# Build settings +markdown: kramdown +exclude: + - Gemfile + - Gemfile.lock diff --git a/_layouts/master.html b/_layouts/master.html new file mode 100644 index 0000000..93216cf --- /dev/null +++ b/_layouts/master.html @@ -0,0 +1,44 @@ + + + + + {{ page.title }} + + + + {% if page.description %} + + + {% else %} + + + {% endif %} + + + + + + +
+

Introducing MedicMate

+

The EMS field reference you’ve been waiting for

+
+ +
+ {{ content }} +
+ + + + + diff --git a/bootstrap-override.scss b/bootstrap-override.scss new file mode 100644 index 0000000..199ed95 --- /dev/null +++ b/bootstrap-override.scss @@ -0,0 +1,18 @@ +--- +--- + +$orange: #dd8800; +$link-color: #00e; +$light: #999; +$extra-light: #ddd; +$ultra-light: #eee; +$dark: #333; + +$horizontal-break: 600px; +$vertical-break: 800px; + +body { + font-family: 'Roboto', sans-serif; + font-weight: 300; +} + diff --git a/index.html b/index.html new file mode 100644 index 0000000..221a7c1 --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ +--- +title: MedicMate - Digital EMS field guide with real-time hospital status +layout: master +--- + +

MedicMate is a mobile app that turns smartphones and tablets into a field reference tailored to your agency that’s always up-to-date.

+ +

Features

+ + + +

Reliability

+ +

MedicMate is designed to work with intermittent Internet connectivity. All content is saved to each device so it’s always available. When you connect to the Internet, your latest content is downloaded.

+ +

Get Started

+ +

The first step in your journey to a better field reference is to create your agency’s MedicMate account.

+ +

Contact sales@medicmate.io to get started today!

+ diff --git a/medicmate.scss b/medicmate.scss new file mode 100644 index 0000000..41b244e --- /dev/null +++ b/medicmate.scss @@ -0,0 +1,81 @@ +--- +--- + +$orange: #dd8800; +$link-color: #00e; +$light: #999; +$dark: #333; + +$horizontal-break: 600px; +$vertical-break: 800px; + +body { + font-size: 16px; + font-family: 'Roboto', sans-serif; + font-weight: 300; + padding: 0; + margin: 0; + color: $dark; +} + +h1 { + margin: 0; + font-size: 2em; + font-weight: 300; + color: $orange; +} + +h2 { + font-size: 1.2em; + font-weight: 300; + color: $orange; +} + +header { + margin: 0; + background-color: $orange; + color: white; + text-align: center; + padding: 1em; + + h1 { + color: white; + } +} + +main { + padding: 1em; + margin-left: auto; + margin-right: auto; + max-width: $horizontal-break; +} + +footer { + text-align: center; + color: $light; +} + +li { + padding: 0.5em; +} + +p { + margin-top: 1em; + margin-bottom: 0; +} + +a { + color: $link-color; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +@media (min-width: $horizontal-break) { + header { + padding: 3em; + } +} + -- cgit v1.2.3