• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/25

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

25 Cards in this Set

  • Front
  • Back

SASS is like this

preprocessor scripting language

that is like these into Cascading Style Sheets (CSS).

interpreted or compiled

This is the scripting language itself.

SassScript

Sass consists of these.

two syntaxes

The original syntax is called this

"the indented syntax"

It uses this to separate code blocks

indentation

and these to separate rules.

newline characters

The newer syntax, "SCSS" (Sassy CSS), uses this like that of CSS.

block formatting

It uses these to denote code blocks

braces

and these to separate lines within a block

semicolons

Variables is a way to do this that you want to reuse throughout your stylesheet.

store information

import is an option that lets you split your CSS into these

smaller, more maintainable portions

mixin lets you make these that you want to reuse throughout your site

groups of CSS declarations

You can even pass in these to make your mixin more flexible

values

The base/ folder holds what we might call this for the project.

boilerplate code

The layout/ folder contains everything that takes part in doing this to the site or application.

laying out

components/ is more focused on these

widgets or modules

If you have these, it is better to put them in a pages/ folder, in a file named after the page

page-specific styles

The abstracts/ folder gathers all these used across the project.

Sass tools and helpers

And last but not least, most projects will have a vendors/ folder containing all the CSS files from these

external libraries and frameworks

The main file (usually labelled main.scss) should be the only Sass file from the whole code base not to begin with this.

underscore

7-1 pattern: is also called this

7 folders, 1 file

Basically, you have all your partials stuffed into these

7 different folders

and this at the root level (usually named main.scss)

single file

which imports them all to be compiled into this.

CSS stylesheet