26 lines
509 B
SCSS
26 lines
509 B
SCSS
|
/* Welcome to Compass.
|
||
|
* In this file you should write your main styles. (or centralize your imports)
|
||
|
* Import this file using the following HTML or equivalent:
|
||
|
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
|
||
|
|
||
|
@import "compass/reset";
|
||
|
@import "_colors.scss";
|
||
|
|
||
|
body, html {
|
||
|
background: $fond;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
background: #fff;
|
||
|
margin: 0 auto;
|
||
|
max-width: 700px;
|
||
|
}
|
||
|
|
||
|
|
||
|
header {
|
||
|
background: #fff;
|
||
|
|
||
|
}
|