Skip to content

Commit

Permalink
Privacy Policy added
Browse files Browse the repository at this point in the history
+ Some CSS changes
  • Loading branch information
HyperGamesDev committed Feb 23, 2023
1 parent 90abf8c commit cd12831
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 8 deletions.
5 changes: 4 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ <h1>Latest PreRelease <br><br><span id="latestText"></span></h1>
</a></div>
<br><br><br><br>
<div class="footer">!-->
<footer><p><a href="http://hypergamesdev.github.io" target="_blank" onclick="playClick();" allow="autoplay">Author: &nbsp; &nbsp; HyperGamesDev | Maciej Krefft</a></p></footer>
<footer>
<p><a href="./privacy policy.html" target="_blank">Privacy Policy</a></p>
<p><a href="http://hypergamesdev.github.io" target="_blank">Author: &nbsp; &nbsp; HyperGamesDev | Maciej Krefft</a></p>
</footer>
</div>
</div>
</center>
Expand Down
47 changes: 47 additions & 0 deletions docs/privacy policy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<html>
<head>
<title>SSS222 - Privacy Policy</title>
<style>
h4{
margin-bottom:5px;
}
</style>
</head>
<body style="margin:0">
<center>
<div style="width:50%; text-align:left;">
<h1>SSS222 - Privacy Policy</h1>

<h3>Last updated: 23.02.2023</h3>

We at <i>HyperLemonStudios</i> are committed to protecting the privacy of our users.
<br>
This Privacy Policy outlines the types of information we collect, how we use it, and the steps we take to protect your information.

<h4>Information Collected</h4>
We may collect the following information from our users:
<ul>
<li><b>Username and password:</b> This information is used for login and accessing all other social data.</li>
<li><b>Used platform for highscores:</b> This is for sorting of scores and dividing Android from PC, etc.</li>
<li><b>Game purchase on Steam:</b> This is for getting special in-game cosmetics based on the fact.</li>
<li><b>Data of registration and last login including the app used for these actions:</b> This information is used for simple inside analytics.</li>
<li><b>Users Customization Data:</b> This information is used for high score display.</li>
</ul>
We also collect basic data each time a score is set, including information such as health before death, cause of death, damage dealt by the source, level, and current score.
<br>
This data is only stored in Unity Analytics on our account and may be shared from time to time in a broad way on social media, but it is not assigned to any individual user.

<h4>Data Storage</h4>
All of the data we collect(besides Unity Analytics) is stored on a MongoDB cloud that is encrypted and is not shared with anyone outside of our company.

<h4>Changes to this Privacy Policy</h4>
We reserve the right to modify or update this Privacy Policy at any time without prior notice.
<br>
Your continued use of our services after any changes to this policy will constitute your acceptance of such changes.

<h4>Contact Us</h4>
If you need your data to be deleted or have any other questions, please contact us at <a href="mailto:[email protected]">[email protected]</a>
</div>
</center>
</body>
</html>
12 changes: 9 additions & 3 deletions docs/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
body {
margin: 0;
min-height: 100%;
background-image: url("img/sss222bg.png");
background-color: rgb(49, 9, 49);
background-size: 160% 120%;
cursor: url("img/cursor.png"), auto;
font-family: "deathstar";
font-family: "deathstar", "Arial", "Open Sans";
letter-spacing: 2px;
color: white;
}
Expand All @@ -18,6 +20,10 @@ a {
cursor: url("img/cursor.png"), auto;
}

a:hover {
color: #ffeeff;
}

a:active {
color: #ffb8ff;
}
Expand All @@ -35,7 +41,7 @@ a:active {
font-style: normal;
}
h1.title {
font-family: "moonhouse";
font-family: "moonhouse", "Arial", "Open Sans";
letter-spacing: 2.5px;
margin-bottom: 30px;
}
Expand Down Expand Up @@ -85,7 +91,7 @@ a.release {
background-position: -24px -12px;
background-size: 112% 130%;
border: none;
font-family: "moonhouse";
font-family: "moonhouse", "Arial", "Open Sans";
color: white;
letter-spacing: 3px;
line-height: 24px;
Expand Down
2 changes: 1 addition & 1 deletion docs/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions docs/style.scss
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
$bgColor:rgb(49,9,49);
$textColor: white;
$accentColor: #ffb8ff;
$linkHoverColor: #ffeeff;

body{
margin:0;
min-height: 100%;
background-image:url("img/sss222bg.png");
//background-repeat:repeat;
background-color: $bgColor;
//background-blend-mode: screen;
background-size:160% 120%;
cursor: url("img/cursor.png"), auto;
font-family: "deathstar";
font-family: "deathstar", "Arial", "Open Sans";
letter-spacing:2px;
color: $textColor;
}div.bodyoverlay{background-color: rgb(0,0,0,0.2);}
a{color:$accentColor;text-decoration:none;cursor:url("img/cursor.png"), auto;}
a:hover{color:$linkHoverColor;}
a:active{color:$accentColor;}
@font-face {
font-family: "moonhouse";
Expand All @@ -29,7 +33,7 @@ a:active{color:$accentColor;}
font-weight: normal;
font-style: normal;
}
h1.title{font-family: "moonhouse";letter-spacing:2.5px;margin-bottom:30px;}
h1.title{font-family: "moonhouse", "Arial", "Open Sans";letter-spacing:2.5px;margin-bottom:30px;}
h2.shortDesc{color:#c476f5;}

div.logo{
Expand Down Expand Up @@ -69,7 +73,7 @@ a.release{
background-position:-24px -12px;
background-size:112% 130%;
border:none;
font-family: "moonhouse";
font-family: "moonhouse", "Arial", "Open Sans";
color: white;
letter-spacing:3px;
line-height:24px;
Expand Down

0 comments on commit cd12831

Please sign in to comment.