Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: chrome/common/extensions/docs/static/sass/_typography.scss

Issue 166073007: Fixed clean URLs for GCS file system provider in the documentation server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments; added keyboard style to keys in documentation (not related to this CL) Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/extensions/docs/server2/gcs_file_system.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* ============================================================================= 1 /* =============================================================================
2 Typography 2 Typography
3 3
4 To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins 4 To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
5 so that the line height of our base font becomes the basic unit of vertical 5 so that the line height of our base font becomes the basic unit of vertical
6 measurement. We use multiples of that unit to set the top and bottom margins 6 measurement. We use multiples of that unit to set the top and bottom margins
7 for our block level elements and to set the line heights of any fonts. 7 for our block level elements and to set the line heights of any fonts.
8 For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm 8 For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
9 ========================================================================== */ 9 ========================================================================== */
10 10
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 display: list-item; 220 display: list-item;
221 } 221 }
222 222
223 .uncapitalize::first-letter { 223 .uncapitalize::first-letter {
224 text-transform: lowercase; 224 text-transform: lowercase;
225 } 225 }
226 226
227 .capitalize::first-letter { 227 .capitalize::first-letter {
228 text-transform: uppercase; 228 text-transform: uppercase;
229 } 229 }
230
231 .kbd {
232 background-color: #f7f7f7;
233 border: 1px solid #ccc;
234 color: #333;
235 font-size: 11px;
236 line-height: 1.4;
237 text-shadow: 0 1px 0 #fff;
238 font-family: Arial,Helvetica,sans-serif;
239 display: inline-block;
240 padding: 0.1em 0.6em;
241 margin: 0 0.1em;
242 white-space: nowrap;
243 -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
244 -moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
245 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
246 -webkit-border-radius: 3px;
247 -moz-border-radius: 3px;
248 border-radius: 3px;
249 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/gcs_file_system.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698