diff --git a/README.md b/README.md index 79d33cd..7f4c8e6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# EUROMAT +# CANDYMAT -A Vue.js powered, progressive web voting application for upcoming European elections. EUROMAT is hosted on _Netlify_ and uses the **Netlify CMS** for easier collaboration. +A Vue.js powered, progressive web voting application for Candidates. Candymat is hosted on _Netlify_ and uses the **Netlify CMS** for easier collaboration. ## Calculation Model @@ -12,11 +12,11 @@ It's possible to embed Euromat via an iframe and setting query parameters: ```html ``` diff --git a/package.json b/package.json index 8a07715..445ef4d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "euromat", + "name": "candymat", "version": "0.1.0", "private": true, "scripts": { diff --git a/public/img/icons/favicon_gruene_16x16.png b/public/img/icons/favicon_gruene_16x16.png new file mode 100644 index 0000000..3a12cee Binary files /dev/null and b/public/img/icons/favicon_gruene_16x16.png differ diff --git a/public/img/icons/gruenen_logo_200.png b/public/img/icons/gruenen_logo_200.png new file mode 100644 index 0000000..60ec947 Binary files /dev/null and b/public/img/icons/gruenen_logo_200.png differ diff --git a/public/img/icons/gruenen_logo_600.png b/public/img/icons/gruenen_logo_600.png new file mode 100644 index 0000000..60ec947 Binary files /dev/null and b/public/img/icons/gruenen_logo_600.png differ diff --git a/public/index.html b/public/index.html index 3516199..657b43c 100644 --- a/public/index.html +++ b/public/index.html @@ -4,30 +4,30 @@ - EUROMAT 2019 + Candymat - + - + - - + + - + - + @@ -51,7 +51,7 @@
diff --git a/public/manifest.json b/public/manifest.json index 81b8951..c4738df 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,15 +1,15 @@ { - "name": "EUROMAT", - "short_name": "euromat", - "description": "Der Euromat nicht einfach nur ein Wahlomat. Sondern Ihr digitaler Wahl-Freund, der Ihnen einen Eindruck von den europapolitischen Positionen der Parteien vermittelt.", + "name": "CANDYMAT", + "short_name": "candymat", + "description": "Der Candymat nicht einfach nur ein Wahlomat. Sondern Ihr digitaler Wahl-Freund, der Ihnen einen Eindruck von den politischen Positionen der Kandindaten vermittelt.", "icons": [ { - "src": "/img/icons/android-chrome-192x192.png", + "src": "/img/icons/gruenen_logo_200.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/img/icons/android-chrome-512x512.png", + "src": "/img/icons/gruenen_logo_600.png", "sizes": "512x512", "type": "image/png" } diff --git a/src/app/about/components/index.vue b/src/app/about/components/index.vue index 3ab0173..1610fdf 100644 --- a/src/app/about/components/index.vue +++ b/src/app/about/components/index.vue @@ -203,7 +203,7 @@ } svg:not(.team-logo) { - stroke: $blue !important; + stroke: $green !important; } } diff --git a/src/assets/candymat-logo.png b/src/assets/candymat-logo.png new file mode 100644 index 0000000..60ec947 Binary files /dev/null and b/src/assets/candymat-logo.png differ diff --git a/src/styles/colors.scss b/src/styles/colors.scss index e2db615..527c16a 100644 --- a/src/styles/colors.scss +++ b/src/styles/colors.scss @@ -1,13 +1,13 @@ $transparent-white: rgba(255, 255, 255, 0.21); $transparent-black: rgba(0, 0, 0, 0.15); -$blue: #40A6EE; +$green: #59ae2e; $medium-blue: #22608c; $dark-blue: rgb(33,20,82); $yellow: #FEE872; $orange: #F5A960; $pink: #D74AA1; -$background-primary: $blue; +$background-primary: $green; $background-secondary: white; $text-color-base: white;