-
Notifications
You must be signed in to change notification settings - Fork 0
/
tinydo_privacy.html
121 lines (110 loc) · 3.32 KB
/
tinydo_privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>lekskeks</title>
</head>
<body>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: black;
padding-top: 24px;
}
.container-fluid {
}
.normal {
padding-left: 16px;
padding-right: 16px;
}
h1 {
font-size: 16pt;
font-weight: 600;
}
h2 {
padding-top: 16px;
font-size: 16pt;
font-weight: 600;
}
h3 {
padding-top: 16px;
font-size: 16px;
font-weight: 600;
}
.card-container {
overflow: auto;
white-space:nowrap;
position: relative;
}
.card {
border-radius: 10px;
border-width: 0px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.2s;
display: inline-block;
white-space:normal;
margin-top: 8px;
margin-bottom: 24px;
}
.one {
margin-left: 16px;
margin-right: 16px;
}
.two {
margin-right: 16px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card-img-top {
border-radius: 10px 10px 0 0;
width: 196px;
height: 196px;
}
.card-body {
position: relative;
bottom: 24px;
right: 4px;
}
.nopadding {
padding: 0 !important;
margin: 0 !important;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
<h1>
TinyDo
</h1>
<h1>
Privacy Policy
</h1>
</div>
<div class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8">
We do not collect or store any personal data as of now. If our policy regarding privacy changes, it will be available at this adress. Any changes are in effect once they are posted on this page.
</div>
<div class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8 footer">
<h2>
Contact
</h2>
If you have any questions, propositions, or issues to report, please get in touch with us at <a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="col-md-2"></div>
</div>
</div>
</body>
</html>