diff options
-rw-r--r-- | public/css/styles.less | 6 | ||||
-rw-r--r-- | views/home.ejs | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/public/css/styles.less b/public/css/styles.less index 16e5275..26744d3 100644 --- a/public/css/styles.less +++ b/public/css/styles.less @@ -221,7 +221,9 @@ margin-left: 20px; margin-top: 20px; margin-bottom:20px; padding:10px; - background-color: rgb(105,155,200); + background-color: linear-gradient( to left, blue 2% , white 120%, blue 120%, white 2%) + + /*rgb(105,155,200); background: -moz-radial-gradient(top left, ellipse cover, rgba(105,155,200,1) 0%, rgba(181,197,216,1) 57%); background: -webkit-gradient(radial, top left, 0px, top left, 100%, color-stop(0%,rgba(105,155,200,1)), color-stop(57%,rgba(181,197,216,1))); background: -webkit-radial-gradient(top left, ellipse cover, rgba(105,155,200,1) 0%,rgba(181,197,216,1) 57%); @@ -231,7 +233,7 @@ margin-left: 20px; filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#699bc8', endColorstr='#b5c5d8',GradientType=1 ); -webkit-border-radius: 6px; -moz-border-radius: 6px; - border-radius: 6px; + border-radius: 6px;*/ } .logo { diff --git a/views/home.ejs b/views/home.ejs index afffb37..a0a0d74 100644 --- a/views/home.ejs +++ b/views/home.ejs @@ -55,9 +55,10 @@ </footer> </div> + <div class="span12 content"> + </div> </div><!-- /div.row --> </div><!-- /div#wrapper --> - <% include footer %> </body> </html> |