style: create layout - intermediate stage

This commit is contained in:
2013-10-24 14:59:49 +02:00
parent ca1160bb87
commit a5afdc6400
12 changed files with 89 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ Compass::Frameworks.register('modular-scale', :path => File.expand_path("#{exten
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
css_dir = "./../../public/css"
sass_dir = "sass"
images_dir = "img"

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1,16 @@
// Your custom SCSS should be written here...
$font-family-title: "Merriweather Sans";
$font-weight-title: $font-weight-semibold;
h1,h2,h3,h4,h5,h6 {
font-family: $font-family-title;
font-weight: $font-weight-title;
}
//correct entypo
@font-face { font-family: "entypo"; font-style: normal; font-weight: 400;
src: url('./../../fonts/icons/entypo.eot');
src: url("../../fonts/icons/entypo.eot?#iefix") format("ie9-skip-eot"),
url("./../../fonts/icons/entypo.woff") format("woff"),
url("./../../fonts/icons/entypo.ttf") format("truetype");
}

View File

@@ -1,7 +1,7 @@
/* Fonts */
// Import Google Web Fonts
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
//@import url(//fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);
// Set local icon font

View File

@@ -0,0 +1,6 @@
nav.inline-nav {
ul, ol {
display: inline-block;
list-style-type: none;
}
}

View File

@@ -0,0 +1,3 @@
@import "_nav.scss";

View File

@@ -18,7 +18,7 @@ $max-device-width: 2880px; // Max Document Size
$nav-distance: 0; // Navigation distance from the top of the viewport
// Typography
$font-family: "Open Sans";
$font-family: "Oxygen";
$font-style-italic: italic;
$icons: entypo;
$font-smoothing: antialiased;