2024-06-07 16:59:56 -04:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2024-06-07 16:59:56 -04:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2024-06-07 16:59:56 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.layer {
|
|
|
|
|
block-size: 100%;
|
|
|
|
|
display: grid;
|
|
|
|
|
place-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.local {
|
|
|
|
|
position: absolute;
|
2024-08-01 13:49:09 -04:00
|
|
|
inline-size: 180px;
|
|
|
|
|
block-size: 135px;
|
2024-06-07 16:59:56 -04:00
|
|
|
inset: var(--cpd-space-4x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spotlight {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inline-size: 404px;
|
|
|
|
|
block-size: 233px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slot[data-block-alignment="start"] {
|
|
|
|
|
inset-block-end: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slot[data-block-alignment="end"] {
|
|
|
|
|
inset-block-start: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slot[data-inline-alignment="start"] {
|
|
|
|
|
inset-inline-end: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slot[data-inline-alignment="end"] {
|
|
|
|
|
inset-inline-start: unset;
|
|
|
|
|
}
|