PHP Classes

File: public/mdb/scss/core/_typography.scss

Recommend this page to a friend!
  Classes of Ahmad Mustapha   PHP Todo List   public/mdb/scss/core/_typography.scss   Download  
File: public/mdb/scss/core/_typography.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Todo List
Application to manage a list of tasks to do
Author: By
Last change:
Date: 1 year ago
Size: 1,167 bytes
 

Contents

Class file image Download
// Typography // General properties body { font-family: $mdb-font-family; font-weight: $font-weight-light; } h1, h2, h3, h4, h5, h6 { font-weight: $font-weight-light; } // Blockquote .blockquote { padding: $blockquote-padding-y $blockquote-padding-x; border-left: .25rem solid #eceeef; &.text-right { border-right: .25rem solid #eceeef; border-left: none; } .bq-title { margin-bottom: 0; font-size: $font-size-large; font-weight: 400; } p { padding: $blockquote-p-padding-y 0; font-size: $blockquote-p-font-size; } } @each $name, $color in $basic { .bq-#{$name} { border-left: 3px solid $color !important; .bq-title { color: $color !important; } } } // Responsive headings @each $key, $val in $grid-breakpoints { @include media-breakpoint-up($key) { $y: map-get($responsive-headings, $key); @each $name, $value in $y { .#{$name}-responsive { font-size: $value; } } } } @each $name, $color in $basic-mdb-colors { @include text-emphasis-variant(".text-#{$name}", $color); } .font-small { font-size: $font-size-small; } strong { font-weight: 500; }