Add support for .env configuration and privacy page (closes #44)

This commit is contained in:
video-prize-ranch
2022-08-04 19:41:55 -04:00
parent 4da9b74949
commit d50cf2da86
11 changed files with 306 additions and 13 deletions

58
static/css/privacy.css Normal file
View File

@@ -0,0 +1,58 @@
main {
margin: 0 24vw
}
p {
margin: 1em 0
}
ul {
list-style: outside none none;
padding: 0;
margin: 0.25em;
text-align: left;
}
.largeIcon {
font-size: 36px;
color: #2b95f2;
}
.badgeWrapper {
margin: 0 10vw
}
.badge {
background-color: #3b3b3b;
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.25em;
padding: 1em;
text-align: center;
}
.badge h3,
.badge p,
.largeIcon {
margin: 0;
}
.privacyDetails summary {
cursor: pointer;
user-select: none;
color: #2b95f2;
font-weight: 700;
}
.addInfo {
margin-top: 1em;
}
@media only screen and (max-width: 812px) {
.badgeWrapper,
main {
margin: 0
}
}