minor textbox css fix

This commit is contained in:
Daniel Vincent Grippi 2010-09-08 23:35:07 -07:00
parent 1c2bfa64a1
commit a15bf73287
2 changed files with 34 additions and 3 deletions

View file

@ -6,12 +6,13 @@
:weight normal :weight normal
:style normal :style normal
/* via blueprint */
html /* via blueprint */ html
:font :font
:size 100.01% :size 100.01%
body /* via blueprint */ /* via blueprint */
body
:font :font
:size 75% :size 75%
:family "Helvetica Neue", Arial, Helvetica, sans-serif :family "Helvetica Neue", Arial, Helvetica, sans-serif
@ -21,6 +22,23 @@ body /* via blueprint */
:margin :margin
:left 2em :left 2em
/* via blueprint */
input[type=text],
input[type=password],
textarea, select
:background
:color #fff
:border 1px solid #bbb
/* via blueprint */
input[type=text]:focus,
input[type=password]:focus,
input.text:focus,
input.title:focus,
textarea:focus, select:focus
:border
:color #666
#huge_text #huge_text
:font :font
:size 40px :size 40px

View file

@ -16,6 +16,19 @@ body {
background: white; background: white;
margin-left: 2em; } margin-left: 2em; }
input[type=text],
input[type=password],
textarea, select {
background-color: white;
border: 1px solid #bbbbbb; }
input[type=text]:focus,
input[type=password]:focus,
input.text:focus,
input.title:focus,
textarea:focus, select:focus {
border-color: #666666; }
#huge_text { #huge_text {
font-size: 40px; font-size: 40px;
font-family: "BrandonGrotesqueLightRegular"; font-family: "BrandonGrotesqueLightRegular";