Skip to content
Open App

CSS Properties

Sequotion supports the following CSS properties for animation.

PropertyCSS OutputExample Values
Opacityopacity0, 0.5, 1
Translatetranslate0px 0px, 100px -50px
Rotaterotate0deg, 45deg, 360deg
Scalescale1, 1.5, 0.5 1.2
Background Colorbackground-color#ff0000, rgba(0,0,0,0.5)
Colorcolor#ffffff, rgb(50,50,50)
Widthwidth100px, 50%, auto
Heightheight200px, 100%
Gapgap8px, 1rem
Font Sizefont-size16px, 1.5rem, 2em
Font Weightfont-weight400, 700
Letter Spacingletter-spacing0px, 2px, 0.1em
Line Heightline-height1, 1.5, 2
Clip Pathclip-pathcircle(50%), polygon(...)

Properties that accept length or angle values show a unit selector button next to the value input. Click it to switch between available units:

  • Translate, width, height: px, rem, em, %, vw, vh
  • Gap, font-size, letter-spacing: px, rem, em, %
  • Margin, padding: px, rem, em, % (margin supports negative values)
  • Position (top, right, bottom, left): px, rem, em, %
  • Border-width: px, rem, em
  • Border-radius: px, rem, em, %
  • Box-shadow (offsets, blur, spread): px, rem, em
  • Outline (width, offset): px, rem, em
  • Filter blur: px, rem, em
  • Angle properties (rotate, hue-rotate): deg, rad, turn

Font Weight uses a dropdown selector with presets from 100 to 900 (in increments of 100) rather than a drag input like other numeric properties. Select a weight from the dropdown to set the value.

Border Style and Outline Style use a dropdown selector with the following values:

  • solid — a single solid line
  • dashed — a series of dashes
  • dotted — a series of dots
  • double — two parallel solid lines
  • groove — a 3D grooved effect
  • ridge — a 3D ridged effect
  • inset — a 3D inset effect
  • outset — a 3D outset effect
  • none — no border/outline

Clip Path includes a preset shapes dropdown with common shapes:

  • Circlecircle(50%)
  • Ellipseellipse(50% 40%)
  • Insetinset(10%)
  • Rounded Insetinset(10% round 10px)
  • Trianglepolygon(50% 0%, 0% 100%, 100% 100%)
  • Hexagonpolygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%)

Selecting a preset sets the value, which you can then further edit manually using the text input. You can also type any valid clip-path value directly.

Properties like Background Color, Color, and Box Shadow Color include a color swatch button. Click it to open the color picker:

  • Saturation/brightness gradient square with draggable handle
  • Hue slider (rainbow spectrum)
  • Alpha slider (transparency, shown with a checkerboard pattern)
  • Hex input (e.g., #ff9100)
  • RGBA inputs (individual R, G, B, A fields)

These properties expand into sub-tracks that you can animate independently. Click the + button on a compound property row to manage its sub-properties — select which ones to add, and each gets its own keyframe track.

Sub-propertyCSS Output
AllSets all four corners
Top Leftborder-top-left-radius
Top Rightborder-top-right-radius
Bottom Leftborder-bottom-left-radius
Bottom Rightborder-bottom-right-radius
Sub-propertyDescription
ColorBorder color
WidthBorder width (px)
StyleBorder style (dropdown selector — see Border Style / Outline Style)
Sub-propertyDescription
Offset XHorizontal offset (px)
Offset YVertical offset (px)
BlurBlur radius (px)
SpreadSpread radius (px)
ColorShadow color

Filters are added dynamically via the Manage sub-properties button on the Filter track. Available filter functions:

Sub-propertyUnitRange
Blurpx0–100
Brightness%0–500
Contrast%0–500
Grayscale%0–100
Hue Rotatedeg0–360
Invert%0–100
Saturate%0–500
Sepia%0–100

Each filter function gets its own keyframe track, so you can animate them independently with different timing and easing.

Sub-propertyCSS Output
AllSets all four sides
Toptop
Rightright
Bottombottom
Leftleft
Sub-propertyCSS Output
AllSets all four sides
Topmargin-top
Rightmargin-right
Bottommargin-bottom
Leftmargin-left

Margin supports negative values, which can be used to pull elements closer together or create overlapping layouts.

Sub-propertyCSS Output
AllSets all four sides
Toppadding-top
Rightpadding-right
Bottompadding-bottom
Leftpadding-left
Sub-propertyDescription
ColorOutline color
WidthOutline width (px)
StyleOutline style (dropdown selector — see Border Style / Outline Style)
OffsetDistance between the outline and the element border

Outline offset (outline-offset) pushes the outline away from (positive values) or into (negative values) the element border.

Sub-propertyDescription
Offset XHorizontal offset (px)
Offset YVertical offset (px)
BlurBlur radius (px)
ColorShadow color

Text Shadow works like Box Shadow but applies to the text content of an element rather than the element’s box.

Backdrop Filter uses the same filter functions as Filter:

Sub-propertyUnitRange
Blurpx0–100
Brightness%0–500
Contrast%0–500
Grayscale%0–100
Hue Rotatedeg0–360
Invert%0–100
Saturate%0–500
Sepia%0–100

For compound properties with an All sub-track (border-radius, position, margin, padding), changing the “All” value sets all sibling sub-tracks to the same value. Individual sub-tracks can still be set independently afterward.

Properties are organized into five groups in the Add Property dropdown:

  • Transform — translate, rotate, scale
  • Layout — width, height, gap, margin, padding, position
  • Appearance — opacity, background-color, color, border, border-radius, box-shadow, outline
  • Effects — filter, backdrop-filter, text-shadow, clip-path
  • Typography — font-size, font-weight, letter-spacing, line-height