minor textbox css fix
This commit is contained in:
parent
1c2bfa64a1
commit
a15bf73287
2 changed files with 34 additions and 3 deletions
|
|
@ -6,12 +6,13 @@
|
|||
:weight normal
|
||||
:style normal
|
||||
|
||||
|
||||
html /* via blueprint */
|
||||
/* via blueprint */
|
||||
html
|
||||
:font
|
||||
:size 100.01%
|
||||
|
||||
body /* via blueprint */
|
||||
/* via blueprint */
|
||||
body
|
||||
:font
|
||||
:size 75%
|
||||
:family "Helvetica Neue", Arial, Helvetica, sans-serif
|
||||
|
|
@ -21,6 +22,23 @@ body /* via blueprint */
|
|||
:margin
|
||||
: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
|
||||
:font
|
||||
:size 40px
|
||||
|
|
|
|||
|
|
@ -16,6 +16,19 @@ body {
|
|||
background: white;
|
||||
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 {
|
||||
font-size: 40px;
|
||||
font-family: "BrandonGrotesqueLightRegular";
|
||||
|
|
|
|||
Loading…
Reference in a new issue