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

Side by Side Diff: static/scss/content/_reset.scss

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: Created May 16, 2017, 4:26 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 // This file is part of acceptableads.org. 1 // This file is part of acceptableads.org.
2 // Copyright (C) 2016 Eyeo GmbH 2 // Copyright (C) 2016 Eyeo GmbH
3 // 3 //
4 // acceptableads.org is free software: you can redistribute it and/or modify 4 // acceptableads.org is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by 5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or 6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version. 7 // (at your option) any later version.
8 // 8 //
9 // acceptableads.org is distributed in the hope that it will be useful, 9 // acceptableads.org is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 { 84 {
85 border:none; 85 border:none;
86 outline:none; 86 outline:none;
87 } 87 }
88 88
89 h2 + .row, 89 h2 + .row,
90 h1 + .row, 90 h1 + .row,
91 h2 + hr + .row, 91 h2 + hr + .row,
92 h1 + hr + .row 92 h1 + hr + .row
93 { 93 {
94 margin-top: -$sm; 94 // Can't figure out why this is here, plus it was messing with some alignment — @Ire
95 // margin-top: -$sm;
juliandoucette 2017/05/16 19:07:34 Better to delete it and add comment on this line i
ire 2017/05/16 21:32:28 ACK
96
95 } 97 }
96 98
97 .section 99 .section
98 { 100 {
99 margin: $xl 0; 101 margin: $xl 0;
102
103 @media screen and (max-width: $tablet-breakpoint)
104 {
105 margin: $md 0;
106 }
100 } 107 }
101 108
102 .section .section 109 .section .section
103 { 110 {
104 margin: $lg 0; 111 margin: $lg 0;
105 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld