Don't show the box shadow when in print mode.
This commit is contained in:
parent
aa92a34d06
commit
90dc6304bf
1 changed files with 7 additions and 1 deletions
|
@ -42,9 +42,15 @@ article
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
box-shadow: #000 0px 0px 40px -10px;
|
|
||||||
background-color: var(--color_bodybg);
|
background-color: var(--color_bodybg);
|
||||||
}
|
}
|
||||||
|
@media not print
|
||||||
|
{
|
||||||
|
article
|
||||||
|
{
|
||||||
|
box-shadow: #000 0px 0px 40px -10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 600px)
|
@media screen and (min-width: 600px)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue