61 lines
1.0 KiB
SCSS
61 lines
1.0 KiB
SCSS
.center-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
/* Adjust as needed */
|
|
}
|
|
|
|
tui-error {
|
|
text-align: center;
|
|
}
|
|
|
|
p{
|
|
text-align: center;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 28px;
|
|
max-width: 300px;
|
|
max-height: 300px;
|
|
}
|
|
|
|
::ng-deep button.custom-button {
|
|
background-color: #222222 !important;
|
|
/* Pas kleur aan */
|
|
color: white !important;
|
|
/* Tekstkleur aanpassen */
|
|
width: 300px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
--s: 200px; /* control the size */
|
|
--c1: #1d1d1d;
|
|
--c2: #4e4f51;
|
|
--c3: #3c3c3c;
|
|
|
|
background: repeating-conic-gradient(
|
|
from 30deg,
|
|
#0000 0 120deg,
|
|
var(--c3) 0 180deg
|
|
) calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
|
|
repeating-conic-gradient(
|
|
from 30deg,
|
|
var(--c1) 0 60deg,
|
|
var(--c2) 0 120deg,
|
|
var(--c3) 0 180deg
|
|
);
|
|
background-size: var(--s) calc(var(--s) * 0.577);
|
|
}
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
.center-container {
|
|
padding: 0;
|
|
}
|
|
}
|