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

Delta Between Two Patch Sets: static/scss/content/_buttons.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
Left Patch Set: Created May 16, 2017, 4:26 a.m.
Right Patch Set: Fix alignment of hr under headings Created July 6, 2017, 10:25 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 116 }
117 117
118 @media(min-width: $mobile-breakpoint) 118 @media(min-width: $mobile-breakpoint)
119 { 119 {
120 .inline-buttons a, 120 .inline-buttons a,
121 .inline-buttons input 121 .inline-buttons input
122 { 122 {
123 margin-left: $sm; 123 margin-left: $sm;
124 } 124 }
125 } 125 }
126
127 // Button Container //////////////////////////////////////////////////////////// //
128
129 .btn-container
130 {
131 margin-top: $sm;
132 margin-bottom: $sm;
133
134 @media (min-width: $mobile-breakpoint)
135 {
136 margin-top: $md;
137 margin-bottom: $md;
138 }
139
140 @media (min-width: $tablet-breakpoint)
141 {
142 margin-top: $lg;
143 margin-bottom: $lg;
144 }
145 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld