info

Get Help from a LiftKit Expert

arrow_forward
Get Help

Sections

LiftKit is more than just a collection of buttons and cards—it's a design system that empowers you to create your own unique components. Instead of pre-made UI elements, LiftKit provides the building blocks: variables and guidelines that shape the look and feel of your designs. Whether you're going for sleek minimalism or bold brutalism, LiftKit adapts to your creative vision, giving you the freedom to craft any aesthetic, from scratch, with ease.

Choose a Starter Kit

Get started with LiftKit using one of the official starter kits for Webflow, Figma, or CSS.

Quickstart

Get a feel for LiftKit by following along with this short tutorial.

Figure 1. Animation demonstrating state layer implementation.

Overview

Sections are the most essential building block of a page. There are 5 default utility categories for them.

Class Name Padding (top and bottom) Padding (left-and-right)
.section__leastPadding var(--titleBFontSize) var(--titleBFontSize)
.section__lessPadding var(--display2FontSize) var(--display1FontSize)
.section__default var(--display1FontSize) var(--display1FontSize)
.section__morePadding calc(var(--display1FontSize) * var(--wholeStep)) var(--display1FontSize)
.section__mostPadding calc(var(--display1FontSize) * var(--display2FontSize)) var(--display1FontSize)

You may notice that there’s more variance in top-and-bottom padding than left and right padding. That’s simply because I’ve never had a use case where I needed a least-padding section that had the default left-and-right padding. If user feedback indicates this is a stupid way to do it, I’ll gladly change it.

content_copy
Copy Code
.section__leastPadding {
  padding: 1.618em 4.235em;
}

.section__lessPadding {
  padding: 2.618em 4.235em;
}

.section__default {
  padding: 4.235em;
}

.section__morePadding {
  padding: 6.852em 4.235em;
}

.section__mostPadding {
  padding: 11.087em 4.235em;
}

@media screen and (max-width: 991px) {
  .section__lessPadding {
    padding: 2.618em 1.618em;
  }

  .section__default {
    padding: 1.618em;
  }

  .section__morePadding {
    padding: 4.235em 1.618em;
  }

  .section__mostPadding {
    padding: 6.852em 1.618em;
  }

}

Give Us Feedback

Click or tap to reveal form.
expand_more
check_circle
Success! An email has been sent to you with more details.
Please allow up to 5 minutes for it to arrive. Mailchimp can take a bit.
error
Error: Something went wrong. Email info@chainlift.io directly for assistance.