PHP Classes

File: engine/modules/contrib/foundation/source/scss/forms/_help-text.scss

Recommend this page to a friend!
  Classes of Aldo Tripiciano   Quanta CMS   engine/modules/contrib/foundation/source/scss/forms/_help-text.scss   Download  
File: engine/modules/contrib/foundation/source/scss/forms/_help-text.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Quanta CMS
Manage content that works without a database
Author: By
Last change:
Date: 5 years ago
Size: 629 bytes
 

Contents

Class file image Download
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source //// /// @group forms //// /// Default color for help text. /// @type Color $helptext-color: $black !default; /// Default font size for help text. /// @type Number $helptext-font-size: rem-calc(13) !default; /// Default font style for help text. /// @type Keyword $helptext-font-style: italic !default; @mixin foundation-form-helptext { .help-text { $margin-top: ($form-spacing * 0.5) * -1; margin-top: $margin-top; font-size: $helptext-font-size; font-style: $helptext-font-style; color: $helptext-color; } }