Remove borders around images

This commit is contained in:
Pavle Portic 2019-07-20 23:37:02 +02:00
parent 0582f57517
commit 989f551201
Signed by: TheEdgeOfRage
GPG Key ID: 6758ACE46AA2A849
2 changed files with 13 additions and 0 deletions

View File

@ -44,3 +44,10 @@ $heading4Size: 1.0em;
// Theme template ------------------------------
@import "../template/theme";
// ---------------------------------------------
.reveal section img {
margin: 15px 0px;
background: rgba(255,255,255,0.12);
border: unset;
box-shadow: unset;
}

View File

@ -292,3 +292,9 @@ section.has-dark-background, section.has-dark-background h1, section.has-dark-ba
@media print {
.backgrounds {
background-color: #fff; } }
.reveal section img {
margin: 15px 0px;
background: rgba(255, 255, 255, 0.12);
border: unset;
box-shadow: unset; }