Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: pages/blog/index.md

Issue 29438582: Issue 5135 - Reduce font size and padding on smaller screens on acceptableads.com (Closed) Base URL: https://hg.adblockplus.org/web.acceptableads.com
Patch Set: Handle responsive styling Created June 22, 2017, 3:27 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pages/blog/index.md
===================================================================
--- a/pages/blog/index.md
+++ b/pages/blog/index.md
@@ -4,19 +4,40 @@
custom=1
<style>
.card h3
{
font-size: 20px;
height: 70px;
}
+
+.container p:last-child
juliandoucette 2017/06/26 10:31:20 Seems like there may / should be a container class
ire 2017/06/27 08:36:29 Good spot. Will create one.
+{
+ margin-bottom: 32px;
+}
+
+@media(min-width: 544px)
+{
+ .container p:last-child
+ {
+ margin-bottom: 64px;
+ }
+}
+
+@media(min-width: 768px)
+{
+ .container p:last-child
+ {
+ margin-bottom: 96px;
+ }
+}
</style>
-<div class="container p-b-xl" markdown="1">
+<div class="container" markdown="1">
# {{blog-heading[Blog Heading] The official Acceptable Ads Committee blog}}
---
{{blog-paragraph1[Acceptable Ads Blog Paragraph 1] Stay connected.}}
</div>
<? include blog/all-posts ?>

Powered by Google App Engine
This is Rietveld