Igloo Theme
Go to iglootheme.com
  • Welcome
  • FAQ
  • Changelog
  • Common Issues
  • Getting started
    • Installation
    • Theme customization
    • Header and navigation
    • Footer
    • Multilingual site
    • Umbraco Upgrade v8 -> v13
  • Page Types
    • Site
    • Page
    • Feed
      • Post
    • Global content
    • People
    • Sitemap
    • Search
  • Widgets
    • Hero
    • Text
    • Grid
      • Header
      • Text
      • Image
      • Quote
      • Pod
      • Card
      • Code
      • Accordion
      • Price List
      • Line Break
      • Button
      • Video
      • Umbraco Form
      • Price Table
      • Navigation
      • Sub Grid
      • Slider
      • Person
    • Image
    • Text and images
    • Gallery
    • Slider
    • Tabs
    • Latest from feed
    • Map
    • Umbraco forms
    • Contact form
    • Newsletter
    • Logos
    • Instagram feed
    • Global content
    • Login
    • Register
    • Breadcrumbs
    • People
    • Section Navigation
  • Extending
    • Front-end UI
      • CSS variables
      • Buttons
      • Grid
      • Widgets
      • Forms
      • Typography
      • Helpers
    • Create a new widget
    • Intellisense on models in Visual studio
Powered by GitBook
On this page
  • Block
  • Background Color
  • Text Color
  • Compact
  • Block header

Was this helpful?

  1. Extending
  2. Front-end UI

Widgets

Markup for creating a new widget

Block

<section class="block">
    Standard widget markup
</section>

Background Color

<section class="block white-bg">White background</section>
<section class="block gray-bg">Light background</section>
<section class="block dark-bg">Dark background</section>
<section class="block theme-bg">Theme background</section>
<section class="block theme-alt-bg">Theme alt background</section>

Text Color

<section class="block">Dark Text</section>
<section class="block light-color">Light Text</section>

Compact

<section class="block block--compact">Less padding</section>

Block header

<section class="block">
    
    <div class="block__header">
			<h6 class="pre-head">Sub header</h6>
			<h2>Heading</h2>
			<div class="block__header-text">
				<p>Text</p>
			</div>
		</div>
		
		<div class="block__body">
			Block body
		</div>
		
</section>
PreviousGridNextForms

Last updated 4 years ago

Was this helpful?