-
-
Notifications
You must be signed in to change notification settings - Fork 283
Slide Margin
Adrien Taudiere edited this page Feb 2, 2017
·
2 revisions
Using the .css file, you can change some characteristic of slide using .remark-slide-content.
For example, the following lines will drastically reduce the margin of your slides.
.remark-slide-content {
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
}
.remark-slide-content > h1:first-of-type {
margin-top: 0px;
}