Skip to content

Instantly share code, notes, and snippets.

@tripngroove
tripngroove / reach-header-overrides.css
Created December 4, 2012 23:13
Reach Header Font CSS Overrides
/* Include and customize this CSS OR use w/ chrome extension such as stylebot: https://chrome.google.com/webstore/detail/stylebot-social/kaifpdafpkbjghohkfkfmkcfcmmnbnaa*/
.primary-button, button.save {
font-weight: 300;
}
#links li a, .action_menu_button-caption, .standard-button, #bazaar-voice-feedback-link {
font-weight: 400;
}
@tripngroove
tripngroove / gist:3718494
Created September 13, 2012 23:12
Fluid width popover labels
<html>
<head>
<style>
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding:0; margin:0; }
body, input, textarea, select,ul,li { font:13px/20px Arial, sans-serif; color:#333; }
.page { width:800px; margin:0 auto; padding:30px; }
.popover { border:1px solid #ccc; display:inline-block; padding:20px; box-shadow:2px 2px 10px rgba(0,0,0,0.25); }
.table { display:table; }
.row { display:table-row; }
.cell { display:table-cell; padding-bottom:20px; }