diff --git a/cache.appcache b/cache.appcache index 61adf48bc06a11ad60286300842f9a1e55c04170..86573868714e697a0b8e53da4efe2485e23e2495 100644 --- a/cache.appcache +++ b/cache.appcache @@ -3,11 +3,14 @@ CACHE MANIFEST # Adds the ability to play the game offline. # The following comment needs to be updated whenever a change is made. # Run `rake appcache:update` to do so -# Updated: 2015-10-20T11:14:00-08:00 +# Updated: 2018-05-23T22:54:30+02:00 # Main page index.html +# Privacy Page +privacy.html + # CSS style/main.css diff --git a/index.html b/index.html index a6fd42a764a51461d00c9689f182c1aed3c66fa9..1764357e754cb8c9ee8967c70651e1b76f1661cc 100644 --- a/index.html +++ b/index.html @@ -148,6 +148,10 @@ + + diff --git a/privacy.html b/privacy.html new file mode 100644 index 0000000000000000000000000000000000000000..4c3f094cce9266a05fa3313a4ab60dd87d92133b --- /dev/null +++ b/privacy.html @@ -0,0 +1,119 @@ + + + + + + Privacy Policy — 2048 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Privacy Policy and Cookie Statement

+
+

+ https://gabrielecirulli.github.io/2048 is operated and maintained by Gabriele Cirulli, + @iirelu and + @sigod. This document outlines the data handling practices for this website. +

+ +

What personal data do you collect?

+ +

For analytics purposes, anonymous and aggregated data may be collected, using Google Analytics. This data includes:

+ + + +

For more information on how Google Analytics uses this data see: +

+

+ +

Are cookies stored on my device? How are they used?

+ +

We use your browser's local storage features to locally store information about the game's state. This lets us save your + game at any point and allow you to pick it back up from where you left off. This data is kept in your browser and never + sent to servers operated by us or a third-party. No personally-identifiable information is included.

+ +

This website embeds social media features from Twitter. For information on Twitter's Cookie Policy please see: + https://help.twitter.com/en/rules-and-policies/twitter-cookies +

+

This website uses Google Analytics. For information on Google Analytic's Cookie Policy please see: + https://support.google.com/analytics/answer/6004245 +

+ +

If you have any questions, feel free to email + me@gabrielecirulli.com +

+
+ + + + + \ No newline at end of file diff --git a/style/main.css b/style/main.css index ba714602b0fec6d6553723fda7bf8b1b972fd648..a8b5209ad781551f304d119993bab3e80d65d9b4 100644 --- a/style/main.css +++ b/style/main.css @@ -1097,3 +1097,10 @@ hr { animation: pop-in-small 700ms ease 2s both; margin-top: 10px; height: 76px; } } + +.links { + text-align: center; + margin-top: 20px; } + +.privacy { + word-wrap: break-word; } diff --git a/style/main.scss b/style/main.scss index 50fffa466d6c56f11605fc12c31dcc3fe41dd9b1..ab2abb0b7ef62076f65ab5ca76f8e29abefa3c3f 100644 --- a/style/main.scss +++ b/style/main.scss @@ -844,3 +844,12 @@ hr { height: 76px; } } + +.links { + text-align: center; + margin-top: 20px; +} + +.privacy { + word-wrap: break-word; +}