lighten bg and darken font on dispy light

Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
This commit is contained in:
Simon L'nu 2012-05-01 04:02:56 -04:00
parent 5d6296b81b
commit 6d3ba2825b
2 changed files with 11 additions and 9 deletions

View File

@ -2,10 +2,10 @@ article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display
audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;} audio,canvas,video,time{display:inline-block;*display:inline;*zoom:1;}
audio:not([controls]),[hidden]{display:none;} audio:not([controls]),[hidden]{display:none;}
html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} html{font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
body{margin:0;font-size:16px;line-height:1.1em;font-family:sans-serif;color:#222;background-color:#e8e8e8;} body{margin:0;font-size:16px;line-height:1.1em;font-family:sans-serif;color:#111;background-color:#eee;}
button,input,select,textarea{font-family:sans-serif;color:#222;background-color:#e8e8e8;} button,input,select,textarea{font-family:sans-serif;color:#222;background-color:#eee;}
select{border:1px #555 dotted;padding:3px;margin:3px;color:#222;background:#e8e8e8;} select{border:1px #555 dotted;padding:3px;margin:3px;color:#222;background:#eee;}
option{padding:3px;color:#222;background:#e8e8e8;}option[selected="selected"]{color:#111;background:#cca;} option{padding:3px;color:#222;background:#eee;}option[selected="selected"]{color:#111;background:#cca;}
ul,ol{padding:0;} ul,ol{padding:0;}
:focus{outline:0;} :focus{outline:0;}
[disabled="disabled"]{background:#ddd;color:#333;} [disabled="disabled"]{background:#ddd;color:#333;}

View File

@ -13,6 +13,8 @@
/* from html5boilerplate */ /* from html5boilerplate */
/* these are to tell browsers they should be displayed a certain way */ /* these are to tell browsers they should be displayed a certain way */
//@import "_base.less";
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
display: block; } display: block; }
@ -44,25 +46,25 @@ body {
font-size: 16px; font-size: 16px;
line-height: 1.1em; line-height: 1.1em;
font-family: sans-serif; font-family: sans-serif;
color: #222; color: #111;
background-color: #e8e8e8; } background-color: #eee; }
button, input, select, textarea { button, input, select, textarea {
font-family: sans-serif; font-family: sans-serif;
color: #222; color: #222;
background-color: #e8e8e8; } background-color: #eee; }
select { select {
border: 1px #555 dotted; border: 1px #555 dotted;
padding: 3px; padding: 3px;
margin: 3px; margin: 3px;
color: #222; color: #222;
background: #e8e8e8; } background: #eee; }
option { option {
padding: 3px; padding: 3px;
color: #222; color: #222;
background: #e8e8e8; background: #eee;
&[selected="selected"] { &[selected="selected"] {
color: #111; color: #111;
background: #cca; } } background: #cca; } }