mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-22 15:43:51 +00:00
style: create layout - intermediate stage
This commit is contained in:
@@ -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
@@ -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");
|
||||
}
|
@@ -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
|
||||
|
6
Resources/assets/gumpy/sass/_nav.scss
Normal file
6
Resources/assets/gumpy/sass/_nav.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
nav.inline-nav {
|
||||
ul, ol {
|
||||
display: inline-block;
|
||||
list-style-type: none;
|
||||
}
|
||||
}
|
3
Resources/assets/gumpy/sass/chillmain.scss
Normal file
3
Resources/assets/gumpy/sass/chillmain.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
@import "_nav.scss";
|
||||
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user