diff options
| author | Ben Beltran <ben@nsovocal.com> | 2010-12-01 13:34:59 -0700 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2010-12-01 13:34:59 -0700 |
| commit | a847ac2f16eab830b4421a4a9643cb9ee58b30ae (patch) | |
| tree | e2c3193e089d0704ade605681bdb203c7c5b73a0 | |
| parent | b7be4f63119c71b07eacc9af9e6a15db63ef65ea (diff) | |
Ligeros cambios en el CSS
Nadamas algo de colores que no se veían.
| -rw-r--r-- | views/style.css | 8 | ||||
| -rw-r--r-- | views/style.less | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/views/style.css b/views/style.css index 44be2e0..3a1f6e7 100644 --- a/views/style.css +++ b/views/style.css @@ -86,7 +86,7 @@ body { #body blockquote blockquote { margin: 10px; } #body pre { margin: 20px 170px; - border: 1px solid #999999; + border: 1px solid #cccccc; background-color: #eeeeee; padding: 10px; } @@ -110,21 +110,21 @@ hr { margin: 10px 90px; } #body input.title { - border: 1px solid #eeeeee; + border: 1px solid #cccccc; font-size: 1.6em; padding: 5px; margin: 0 90px; width: 770px; } #body input.url { - border: 1px solid #eeeeee; + border: 1px solid #cccccc; font-size: 1.6em; padding: 5px; margin: 0 90px; width: 770px; } #body textarea.text { - border: 1px solid #eeeeee; + border: 1px solid #cccccc; font-size: 1.6em; padding: 5px; margin: 0 90px; diff --git a/views/style.less b/views/style.less index feb4a95..972269c 100644 --- a/views/style.less +++ b/views/style.less @@ -2,6 +2,7 @@ @background_color: #fff; @emphasis_color: #222; @light_color: #999; +@lighter_color: #ccc; @border_color: #eee; @error_color: #ffebe8; @success_color: #f0fff0; @@ -108,7 +109,7 @@ body{ #body pre{ margin: 20px 170px; - border: 1px solid @light_color; + border: 1px solid @lighter_color; background-color: @border_color; padding: 10px; } @@ -137,7 +138,7 @@ hr{ } #body input.title, #body input.url{ - border: 1px solid @border_color; + border: 1px solid @lighter_color; font-size: 1.6em; padding: 5px; margin: 0 90px; @@ -145,7 +146,7 @@ hr{ } #body textarea.text{ - border: 1px solid @border_color; + border: 1px solid @lighter_color; font-size: 1.6em; padding: 5px; margin: 0 90px; |