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

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

Issue 291663002: Adjustments to the fatnav and sidenav, and other CSS updates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing copyright license. Fixed bad indentation on search.js Created 6 years, 6 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 | Annotate | Revision Log
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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 border: 1px solid #ccc; 241 border: 1px solid #ccc;
242 color: #333; 242 color: #333;
243 font-size: 11px; 243 font-size: 11px;
244 line-height: 1.4; 244 line-height: 1.4;
245 text-shadow: 0 1px 0 #fff; 245 text-shadow: 0 1px 0 #fff;
246 font-family: Arial,Helvetica,sans-serif; 246 font-family: Arial,Helvetica,sans-serif;
247 display: inline-block; 247 display: inline-block;
248 padding: 0.1em 0.6em; 248 padding: 0.1em 0.6em;
249 margin: 0 0.1em; 249 margin: 0 0.1em;
250 white-space: nowrap; 250 white-space: nowrap;
251 -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
252 -moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
253 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset; 251 box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
254 -webkit-border-radius: 3px;
255 -moz-border-radius: 3px;
256 border-radius: 3px; 252 border-radius: 3px;
257 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698