Skip to content

Commit

Permalink
base type class, add to inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
briandoll committed Mar 19, 2011
1 parent a8991b4 commit 5f67187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion css/all.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ a { color: #000; text-decoration: underline;}
a:visited { color: #000;}
html { background-image: url('../images/white.birch.jpg'); background-repeat: repeat; }

.base {
.baseType {
font-family: "great-primer-1","great-primer-2", serif;
font-size: 14pt;
color: #333;
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<link rel="stylesheet" href="css3buttons.css" media="screen">
<link rel="stylesheet" href="css/all.css" type="text/css" />
</head>
<body class="base">
<body class="baseType">
<div class="page oldSchool">
<div class="head centered">
<h1>I eat Paleo, but how much protein do I need every day?</h1>
</div>
<div class="body">
<div class="fullWidth medVertPad doubleSpaced">
<div>First, tell us a little about yourself:</div>
<div>My lean body mass is <input type="text" id="bodyweight" class="dottedInput medHorMargin" value="100"> pounds.</div>
<div>My lean body mass is <input type="text" id="bodyweight" class="dottedInput medHorMargin baseType" value="100"> pounds.</div>
<div>I'm aiming to get
<select id="protein_per_pound_of_bodyweight" class="transparentSelect">
<option value="0.5">0.5</option>
Expand All @@ -31,7 +31,7 @@ <h1>I eat Paleo, but how much protein do I need every day?</h1>
</select> grams of protein per pound of lean body mass.
</div>
<div>
Great! You'll need <input type="text" id="protein_goal" class="dottedInput medHorMargin" value="100"> grams of protein.
Great! You'll need <input type="text" id="protein_goal" class="dottedInput medHorMargin baseType" value="100"> grams of protein.
</div>
</div>

Expand All @@ -44,7 +44,7 @@ <h3>BUT HOW MUCH FOOD IS THAT??!?!?! Let's find out!</h3>
<a href="javascript:void(false)" class="button addFoodButton" id="add"><span class="plus icon"></span>Add Protein Source</a>
<ul>
<li>
<input type="text" class="qty dottedInput medHorMargin" value="">
<input type="text" class="qty dottedInput medHorMargin baseType" value="">
<select class="protein_source transparentSelect">
<option value="6">Egg(s)</option>
<option value="3">slices of Bacon</option>
Expand Down

0 comments on commit 5f67187

Please sign in to comment.