🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@scalescss/objects-flag

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scalescss/objects-flag

A slightly more advanced versin of the Media Object for Scales CSS

latest
Source
npmnpm
Version
6.0.0-1
Version published
Maintainers
1
Created
Source

Flag Object for Scales

A simple object for placing variable amounts of content next to a fixed image or other media. Similar to the media object, the flag object allows you to control the vertical alignment of the content.

Based on The Flag Object, by Harry Roberts.

Requirements

Scales uses the Sass CSS preprocessor, you'll need either Ruby Sass or LibSass.

Installation

  • NPM: npm install --save @scales/objects-flag

Usage

The flag object can be used in many situations for positioning any type of image or other media next to some other content.

Basic usage:

<div class="Flag">
  <div class="Flag__figure">
    <img src="http://placekitten.com/g/150/150">
  </div>
  <div class="Flag__body">
    <p>The domestic cat is a small, usually furry, domesticated, and carnivorous mammal. It is often called the housecat when kept as an indoor pet, or simply the cat when there is no need to distinguish it from other felids and felines.</p>
  </div>
</div>

To move the image to the opposite side:

<div class="Flag--rev">

To change the vertical alignment of the text to middle or bottom:

<div class="Flag Flag--middle">

<div class="Flag Flag--bottom">

To stack image above the text on small screens:

<div class="Flag Flag--stacked">

Available Classes

  • .Flag
  • .Flag--rev
  • .Flag__figure
  • .Flag__body
  • .Flag--stacked

For controlling vertical alignment

  • .Flag--middle
  • .Flag--bottom

For changing the space between the image and the content

  • .Flag--flush
  • .Flag--tiny
  • .Flag--small
  • .Flag--large
  • .Flag--huge

Available Variables

  • $flag-gutter
  • $flag-gutter-tiny
  • $flag-gutter-small
  • $flag-gutter-large
  • $flag-gutter-huge
  • $flag-stacked-breakpoint

Namespace Variables

The Scales Namespace Variable

All Scales patterns expose the $scales-namespace variable.

$scales-namespace accepts a string that will prefix all Scales classes. The default value is null.

Class Level Namespace Variable

Class level namespace variables allow you to namespace a selector based on the type e.g. b- for "base", o- for "objects", u- for utilities, and c- for "components".

This pattern exposes the $scales-objects-class-namespace variable.

$scales-objects-class-namespace accepts a string that will prefix any classes in this pattern and follow the Scales Namespace Variable if it is not null. The default value is null.

Namespace Variable Usage

To set either of these namespaces, you will need to set the variables in a file that is imported before any scales files. For example:

@import your-project/settings; // Namespace variables are set in this file
@import your-project/scalescss; // Imports all of the Scales packages
@import your-project/project // The rest of your project imports

FAQs

Package last updated on 11 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts