Privacy statement.

This commit is contained in:
codevictory
2021-05-11 19:35:21 +03:00
parent 2ae2f601dd
commit c5bd951747
12 changed files with 174 additions and 6 deletions

View File

@@ -4,6 +4,8 @@
@import './pages/index.scss';
@import './pages/form.scss';
@import './pages/performance.scss';
@import './pages/admin.scss';
@import './pages/privacy.scss';
/* Alerts and form errors */
.alert {
padding: 15px;

View File

@@ -0,0 +1,16 @@
table {
width: 93%;
border-spacing: 13px;
}
.actions {
display: flex;
flex-direction: column;
font-size: 0.9em;
}
.choices-collection {
font-size: 0.9em;
border-left: 1px solid;
border-right: 1px solid;
}

View File

@@ -0,0 +1,32 @@
.privacy-text {
display: flex;
flex-direction: column;
width: 80%;
h2 {
text-align: left;
padding-left: 20px;
}
}
@media screen and (max-width: 600px) {
.privacy-text {
width: 100%;
}
}
.disclaimer {
display: flex;
flex-direction: column;
font-size: 0.9em;
align-items: center;
margin-bottom: 20px;
p {
margin-bottom: 0px !important;
}
}
p {
max-width: 100% !important;
}

View File

@@ -18,7 +18,11 @@ section.logo ~ section.main {
border-radius: 0px;
}
.email-link {
.generic-link {
color: blue;
text-decoration: underline;
}
hr {
width: inherit;
}