2022-05-26 08:52:27 +03:00
|
|
|
.outerContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.innerContainer {
|
2022-09-10 09:23:24 +03:00
|
|
|
width: clamp(00px, 100%, 600px);
|
2022-05-26 08:52:27 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-30 09:17:12 +03:00
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
background-color: var(--theme-color-background-main);
|
2022-07-08 23:20:22 +03:00
|
|
|
margin: 1rem auto;
|
2022-05-26 08:52:27 +03:00
|
|
|
border-radius: var(--theme-rounded-corners);
|
2022-07-08 10:10:18 +03:00
|
|
|
padding: 1rem;
|
2022-09-10 09:23:24 +03:00
|
|
|
font-size: 1.2rem;
|
2022-05-26 08:52:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|