37 lines
674 B
SCSS
37 lines
674 B
SCSS
/*
|
|
|
|
*= require_self
|
|
*= require qi/forms
|
|
|
|
*= require qi/general
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
body {
|
|
background: #3f94eb;
|
|
font-family: verdana;
|
|
padding:0px;
|
|
margin:0px;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-size: 13px;
|
|
font-family: "Lucida Grande", arial, helvetica, sans-serif; }
|
|
body #title {
|
|
width: 520px;
|
|
margin: auto;
|
|
margin-top: 10%;
|
|
color: #9fc9f5;
|
|
text-shadow: 0 1px 1px #3f94eb;
|
|
padding: 0px;
|
|
text-transform: uppercase; }
|
|
body #main {
|
|
background: white;
|
|
width: 500px;
|
|
padding: 10px;
|
|
margin: auto;
|
|
-webkit-box-shadow: #666666 0px 0px 20px;
|
|
-moz-box-shadow: #666666 0px 0px 20px;
|
|
box-shadow: #666666 0px 0px 20px; }
|