Initial commit

This commit is contained in:
Marek Lesko
2025-08-19 16:58:51 +02:00
commit a2f7e2285a
908 changed files with 160315 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
.consentContainer {
display: flex;
align-items: center;
justify-content: center;
padding-top: 80px;
}
.consent {
width: 400px;
}
@media (max-width: 600px) {
.consentContainer {
padding-top: 0px;
display: block;
}
.consent {
width: auto;
}
}
.consent .modal-content {
padding: 20px;
}
.consent .consentinfo {
margin-bottom: 20px;
display: flex;
align-items: center;
}
.consent .consentinfo .img {
margin: 0px 5px 0px 5px;
}
.consent .consentinfo .separator {
flex: 1;
height: 1px;
background-color: var(--sid-separator-bg);
}
.consent .consentinfo img {
width: 60px;
}
.consent button[type='submit'] {
width: 100%;
margin-top: 5px;
margin-bottom: 5px;
}