1--- 2# Only the main Sass file needs front matter (the dashes are enough) 3--- 4@charset "utf-8"; 5 6// Sans Serif 7@import url('//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400italic,700italic,400,700'); 8 9// Our variables 10$base-font-family: "Open Sans", Helvetica, Arial, sans-serif; 11$base-font-size: 14px; 12$base-font-weight: 400; 13$small-font-size: $base-font-size * 0.875; 14$base-line-height: 20px; 15 16$spacing-unit: 30px; 17 18$text-color: #111; 19$background-color: #fdfdfd; 20$brand-color: #2a7ae2; 21 22$grey-color: #828282; 23$grey-color-light: lighten($grey-color, 40%); 24$grey-color-dark: darken($grey-color, 25%); 25 26// Width of the content area 27$content-width: 800px; 28 29$on-palm: 600px; 30$on-laptop: 800px; 31 32// Import partials from the `minima` theme. 33@import "minima"; 34 35// Import api reference styles 36@import "api"; 37