12 lines
203 B
CSS
12 lines
203 B
CSS
html:-moz-full-screen {
|
|
background: grey;
|
|
}
|
|
html:-webkit-full-screen {
|
|
background: grey;
|
|
}
|
|
html:fullscreen {
|
|
background: grey;
|
|
}
|
|
:not(:root):fullscreen::backdrop{
|
|
background:whitesmoke;
|
|
} |