UNPKG

444 BSCSSView Raw
1@import "mixins/settings.global";
2
3.c-overlay {
4 display: block;
5 position: absolute;
6 top: 0;
7 right: 0;
8 bottom: 0;
9 left: 0;
10 width: 100%;
11 height: 100%;
12 background-color: transparentize($overlay-background-color, .6);
13 z-index: $overlay-z-index;
14}
15
16.c-overlay--fullpage {
17 position: fixed;
18}
19
20.c-overlay--transparent {
21 background-color: $overlay-transparent-background-color;
22}
23
24.c-overlay--dismissable {
25 cursor: pointer;
26}