Skip to content

Commit

Permalink
Sass & Compass are on their way
Browse files Browse the repository at this point in the history
  • Loading branch information
Simounet committed Jan 22, 2014
1 parent 42601cf commit ceb2d1d
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
23 changes: 23 additions & 0 deletions config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "img"
javascripts_dir = "javascripts"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed

relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
22 changes: 22 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* RESET */
/* line 3, ../sass/style.scss */
li {
list-style: none;
}

/* GENERAL STYLE */
/* line 8, ../sass/style.scss */
body {
display: flex;
}

/* line 11, ../sass/style.scss */
aside {
flex: 1 0 0;
background-color: #A7A7A7;
}

/* line 15, ../sass/style.scss */
section {
flex: 4 0 0;
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8">
<title>LeedVibes</title>
<link rel="stylesheet" href="css/normalize.css" media="all">
<link rel="stylesheet" href="css/style.css" media="all">
</head>
<body>
<!-- aside>ul>(li>a[href=#]{All feed})+(li>button.js-toggle{&#9662;}+a[href=#]{Dossier$}+ul.js-toggle-item>li*4>a[href=#]{Site$})*5 -->
Expand Down
17 changes: 17 additions & 0 deletions sass/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@import "compass/css3";
/* RESET */
li {
list-style: none;
}

/* GENERAL STYLE */
body {
display: flex;
}
aside {
flex: 1 0 0;
background-color: #A7A7A7;
}
section {
flex: 4 0 0;
}

0 comments on commit ceb2d1d

Please sign in to comment.