forked from p15670423/monkey
6 lines
329 B
CSS
6 lines
329 B
CSS
|
/* Add a shadow around images in content pages. Most of our content is screenshots, and the Island's background merges with
|
||
|
the documentation background. Only #body-inner so that the Logo image won't get a border around it */
|
||
|
#body-inner img {
|
||
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
||
|
}
|