2024-03-24 15:04:18 +01:00
|
|
|
/* based on Fomantic UI container module, with just the parts extracted that we use. If you find any
|
|
|
|
|
unused rules here after refactoring, please remove them. */
|
|
|
|
|
|
|
|
|
|
.ui.container {
|
|
|
|
|
width: 1280px;
|
2024-04-10 08:13:22 +02:00
|
|
|
max-width: calc(100% - calc(2 * var(--page-margin-x)));
|
2024-03-24 15:04:18 +01:00
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-06 15:17:22 +08:00
|
|
|
.ui.fluid.container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2025-01-08 23:57:18 +08:00
|
|
|
.ui.container.medium-width {
|
|
|
|
|
width: 800px;
|
|
|
|
|
}
|
2026-02-26 16:16:11 +01:00
|
|
|
|
|
|
|
|
.ui.message.web-banner-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui.message.web-banner-container > .web-banner-content {
|
|
|
|
|
width: 1280px;
|
|
|
|
|
max-width: calc(100% - calc(2 * var(--page-margin-x)));
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui.message.web-banner-container > button.dismiss-banner {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 20px;
|
|
|
|
|
top: 15px;
|
|
|
|
|
}
|