UNPKG

glamorous

Version:

React component styling solved

1,266 lines (1,079 loc) 76.7 kB
import {SingleOrArray} from './helpers' // See CSS 3 CSS-wide keywords https://www.w3.org/TR/css3-values/#common-keywords // See CSS 3 Explicit Defaulting https://www.w3.org/TR/css-cascade-3/#defaulting-keywords // "all CSS properties can accept these values" type CSSWideKeyword = 'initial' | 'inherit' | 'unset' // Based on [CSSProperties from React types](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts) export interface CSSPropertiesCompleteSingle { /** * Aligns a flex container's lines within the flex container when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis. */ alignContent?: | CSSWideKeyword | 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'stretch' /** * Sets the default alignment in the cross axis for all of the flex container's items, including anonymous flex items, similarly to how justify-content aligns items along the main axis. */ alignItems?: | CSSWideKeyword | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch' /** * Allows the default alignment to be overridden for individual flex items. */ alignSelf?: | CSSWideKeyword | 'auto' | 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch' /** * This property allows precise alignment of elements, such as graphics, that do not have a baseline-table or lack the desired baseline in their baseline-table. With the alignment-adjust property, the position of the baseline identified by the alignment-baseline can be explicitly determined. It also determines precisely the alignment point for each glyph within a textual element. */ alignmentAdjust?: CSSWideKeyword | string | number alignmentBaseline?: | CSSWideKeyword | 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'use-script' /** * Defines a length of time to elapse before an animation starts, allowing an animation to begin execution some time after it is applied. */ animationDelay?: CSSWideKeyword | string | number /** * Defines whether an animation should run in reverse on some or all cycles. */ animationDirection?: | CSSWideKeyword | 'normal' | 'reverse' | 'alternate' | ' alternate-reverse' /** * Specifies how many times an animation cycle should play. */ animationIterationCount?: CSSWideKeyword | 'infinite' | number /** * Defines the list of animations that apply to the element. */ animationName?: CSSWideKeyword | string /** * Defines whether an animation is running or paused. */ animationPlayState?: CSSWideKeyword | 'running' | 'paused' /** * Allows changing the style of any element to platform-based interface elements or vice versa. */ appearance?: CSSWideKeyword | 'auto' | 'none' /** * Determines whether or not the “back” side of a transformed element is visible when facing the viewer. */ backfaceVisibility?: CSSWideKeyword | 'visible' | 'hidden' /** * Shorthand property to set the values for one or more of: * background-clip, background-color, background-image, * background-origin, background-position, background-repeat, * background-size, and background-attachment. */ background?: CSSWideKeyword | string /** * If a background-image is specified, this property determines * whether that image's position is fixed within the viewport, * or scrolls along with its containing block. * See CSS 3 background-attachment property https://drafts.csswg.org/css-backgrounds-3/#the-background-attachment */ backgroundAttachment?: CSSWideKeyword | 'scroll' | 'fixed' | 'local' /** * This property describes how the element's background images should blend with each other and the element's background color. * The value is a list of blend modes that corresponds to each background image. Each element in the list will apply to the corresponding element of background-image. If a property doesn’t have enough comma-separated values to match the number of layers, the UA must calculate its used value by repeating the list of values until there are enough. */ backgroundBlendMode?: | CSSWideKeyword | 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' | 'difference' | 'exclusion' | 'hue' | 'saturation' | 'color' | 'luminosity' /** * Sets the background color of an element. */ backgroundColor?: CSSWideKeyword | string backgroundComposite?: CSSWideKeyword | string /** * Applies one or more background images to an element. These can be any valid CSS image, including url() paths to image files or CSS gradients. */ backgroundImage?: CSSWideKeyword | string /** * Specifies what the background-position property is relative to. */ backgroundOrigin?: | CSSWideKeyword | 'border-box' | 'padding-box' | 'content-box' /** * Sets the position of a background image. */ backgroundPosition?: CSSWideKeyword | string | number /** * Background-repeat defines if and how background images will be repeated after they have been sized and positioned */ backgroundRepeat?: CSSWideKeyword | string /** * Obsolete - spec retired, not implemented. */ baselineShift?: CSSWideKeyword | string | number /** * Non standard. Sets or retrieves the location of the Dynamic HTML (DHTML) behavior. */ behavior?: CSSWideKeyword | string /** * Shorthand property that defines the different properties of all four sides of an element's border in a single declaration. It can be used to set border-width, border-style and border-color, or a subset of these. */ border?: CSSWideKeyword | string | number /** * Shorthand that sets the values of border-bottom-color, * border-bottom-style, and border-bottom-width. */ borderBottom?: CSSWideKeyword | string | number /** * Sets the color of the bottom border of an element. */ borderBottomColor?: CSSWideKeyword | string /** * Defines the shape of the border of the bottom-left corner. */ borderBottomLeftRadius?: CSSWideKeyword | string | number /** * Defines the shape of the border of the bottom-right corner. */ borderBottomRightRadius?: CSSWideKeyword | string | number /** * Sets the line style of the bottom border of a box. */ borderBottomStyle?: | CSSWideKeyword | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset' /** * Sets the width of an element's bottom border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderBottomWidth?: CSSWideKeyword | string | number /** * Border-collapse can be used for collapsing the borders between table cells */ borderCollapse?: CSSWideKeyword | 'collapse' | 'separate' /** * The CSS border-color property sets the color of an element's four borders. This property can have from one to four values, made up of the elementary properties: * • border-top-color * • border-right-color * • border-bottom-color * • border-left-color The default color is the currentColor of each of these values. * If you provide one value, it sets the color for the element. Two values set the horizontal and vertical values, respectively. Providing three values sets the top, vertical, and bottom values, in that order. Four values set all for sides: top, right, bottom, and left, in that order. */ borderColor?: CSSWideKeyword | string /** * Specifies different corner clipping effects, such as scoop (inner curves), bevel (straight cuts) or notch (cut-off rectangles). Works along with border-radius to specify the size of each corner effect. */ borderCornerShape?: CSSWideKeyword | string /** * The property border-image-source is used to set the image to be used instead of the border style. If this is set to none the border-style is used instead. */ borderImageSource?: CSSWideKeyword | string | number /** * The border-image-width CSS property defines the offset to use for dividing the border image in nine parts, the top-left corner, central top edge, top-right-corner, central right edge, bottom-right corner, central bottom edge, bottom-left corner, and central right edge. They represent inward distance from the top, right, bottom, and left edges. */ borderImageWidth?: CSSWideKeyword | string | number /** * Shorthand property that defines the border-width, border-style and border-color of an element's left border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the left border — border-left-width, border-left-style and border-left-color. */ borderLeft?: CSSWideKeyword | string | number /** * The CSS border-left-color property sets the color of an element's left border. This page explains the border-left-color value, but often you will find it more convenient to fix the border's left color as part of a shorthand set, either border-left or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderLeftColor?: CSSWideKeyword | string /** * Sets the style of an element's left border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderLeftStyle?: | CSSWideKeyword | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset' /** * Sets the width of an element's left border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderLeftWidth?: CSSWideKeyword | string | number /** * Sets the width of an element's border radius. */ borderRadius?: CSSWideKeyword | string | number /** * Shorthand property that defines the border-width, border-style and border-color of an element's right border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the right border — border-right-width, border-right-style and border-right-color. */ borderRight?: CSSWideKeyword | string | number /** * Sets the color of an element's right border. This page explains the border-right-color value, but often you will find it more convenient to fix the border's right color as part of a shorthand set, either border-right or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderRightColor?: CSSWideKeyword | string /** * Sets the style of an element's right border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderRightStyle?: | CSSWideKeyword | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset' /** * Sets the width of an element's right border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderRightWidth?: CSSWideKeyword | string | number /** * Specifies the distance between the borders of adjacent cells. */ borderSpacing?: CSSWideKeyword | string | number /** * Sets the style of an element's four borders. This property can have from one to four values. With only one value, the value will be applied to all four borders; otherwise, this works as a shorthand property for each of border-top-style, border-right-style, border-bottom-style, border-left-style, where each border style may be assigned a separate value. */ borderStyle?: | CSSWideKeyword | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset' /** * Shorthand property that defines the border-width, border-style and border-color of an element's top border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the top border — border-top-width, border-top-style and border-top-color. */ borderTop?: CSSWideKeyword | string | number /** * Sets the color of an element's top border. This page explains the border-top-color value, but often you will find it more convenient to fix the border's top color as part of a shorthand set, either border-top or border-color. * Colors can be defined several ways. For more information, see Usage. */ borderTopColor?: CSSWideKeyword | string /** * Sets the rounding of the top-left corner of the element. */ borderTopLeftRadius?: CSSWideKeyword | string | number /** * Sets the rounding of the top-right corner of the element. */ borderTopRightRadius?: CSSWideKeyword | string | number /** * Sets the style of an element's top border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. */ borderTopStyle?: | CSSWideKeyword | 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset' /** * Sets the width of an element's top border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderTopWidth?: CSSWideKeyword | string | number /** * Sets the width of an element's four borders. This property can have from one to four values. This is a shorthand property for setting values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. */ borderWidth?: CSSWideKeyword | string | number /** * This property specifies how far an absolutely positioned box's bottom margin edge is offset above the bottom edge of the box's containing block. For relatively positioned boxes, the offset is with respect to the bottom edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties). */ bottom?: CSSWideKeyword | string | number /** * Obsolete. */ boxAlign?: | CSSWideKeyword | 'start' | 'center' | 'end' | 'baseline' | 'stretch' /** * Breaks a box into fragments creating new borders, padding and repeating backgrounds or lets it stay as a continuous box on a page break, column break, or, for inline elements, at a line break. */ boxDecorationBreak?: CSSWideKeyword | 'slice' | 'clone' /** * Deprecated */ boxDirection?: CSSWideKeyword | 'normal' | 'reverse' /** * Do not use. This property has been replaced by the flex-wrap property. * Gets or sets a value that specifies the direction to add successive rows or columns when the value of box-lines is set to multiple. */ boxLineProgression?: CSSWideKeyword | string /** * Do not use. This property has been replaced by the flex-wrap property. * Gets or sets a value that specifies whether child elements wrap onto multiple lines or columns based on the space available in the object. */ boxLines?: CSSWideKeyword | 'single' | 'multiple' /** * Do not use. This property has been replaced by flex-order. * Specifies the ordinal group that a child element of the object belongs to. This ordinal value identifies the display order (along the axis defined by the box-orient property) for the group. */ boxOrdinalGroup?: CSSWideKeyword | string | number /** * Deprecated. */ boxFlex?: CSSWideKeyword | number /** * Deprecated. */ boxFlexGroup?: CSSWideKeyword | number /** * Cast a drop shadow from the frame of almost any element. * MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */ boxShadow?: CSSWideKeyword | string | number /* * Decides what sizing properties (width and height) should be taken into account when sizing elements relationally. * MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing */ boxSizing?: CSSWideKeyword | 'content-box' | 'border-box' /** * The CSS break-after property allows you to force a break on multi-column layouts. More specifically, it allows you to force a break after an element. It allows you to determine if a break should occur, and what type of break it should be. The break-after CSS property describes how the page, column or region break behaves after the generated box. If there is no generated box, the property is ignored. */ breakAfter?: | CSSWideKeyword | 'auto' | 'avoid' | 'avoid-page' | 'page' | 'left' | 'right' | 'recto' | 'verso' | 'avoid-column' | 'column' | 'avoid-region' | 'region' /** * Control page/column/region breaks that fall above a block of content */ breakBefore?: | CSSWideKeyword | 'auto' | 'avoid' | 'avoid-page' | 'page' | 'left' | 'right' | 'recto' | 'verso' | 'avoid-column' | 'column' | 'avoid-region' | 'region' /** * Control page/column/region breaks that fall within a block of content */ breakInside?: | CSSWideKeyword | 'auto' | 'avoid' | 'avoid-page' | 'avoid-column' | 'avoid-region' /** * The clear CSS property specifies if an element can be positioned next to or must be positioned below the floating elements that precede it in the markup. */ clear?: | CSSWideKeyword | 'none' | 'left' | 'right' | 'both' | 'inline-start' | 'inline-end' /** * Deprecated; see clip-path. * Lets you specify the dimensions of an absolutely positioned element that should be visible, and the element is clipped into this shape, and displayed. */ clip?: CSSWideKeyword | string /** * Clipping crops an graphic, so that only a portion of the graphic is rendered, or filled. This clip-rule property, when used with the clip-path property, defines which clip rule, or algorithm, to use when filling the different parts of a graphics. */ clipRule?: CSSWideKeyword | 'nonzero' | 'evenodd' /** * The color property sets the color of an element's foreground content (usually text), accepting any standard CSS color from keywords and hex values to RGB(a) and HSL(a). */ color?: CSSWideKeyword | string | number /** * Describes the number of columns of the element. * See CSS 3 column-count property https://www.w3.org/TR/css3-multicol/#cc */ columnCount?: CSSWideKeyword | number | 'auto' /** * Specifies how to fill columns (balanced or sequential). */ columnFill?: CSSWideKeyword | 'auto' | 'balance' /** * The column-gap property controls the width of the gap between columns in multi-column elements. */ columnGap?: CSSWideKeyword | string /** * Sets the width, style, and color of the rule between columns. */ columnRule?: CSSWideKeyword | string | number /** * Specifies the color of the rule between columns. */ columnRuleColor?: CSSWideKeyword | string /** * Specifies the width of the rule between columns. */ columnRuleWidth?: CSSWideKeyword | string | number /** * The column-span CSS property makes it possible for an element to span across all columns when its value is set to all. An element that spans more than one column is called a spanning element. */ columnSpan?: CSSWideKeyword | 'none' | 'all' /** * Specifies the width of columns in multi-column elements. */ columnWidth?: CSSWideKeyword | string | number /** * This property is a shorthand property for setting column-width and/or column-count. */ columns?: CSSWideKeyword | string | number /** * The counter-increment property accepts one or more names of counters (identifiers), each one optionally followed by an integer which specifies the value by which the counter should be incremented (e.g. if the value is 2, the counter increases by 2 each time it is invoked). */ counterIncrement?: CSSWideKeyword | string | number /** * The counter-reset property contains a list of one or more names of counters, each one optionally followed by an integer (otherwise, the integer defaults to 0.) Each time the given element is invoked, the counters specified by the property are set to the given integer. */ counterReset?: CSSWideKeyword | string | number /** * The cue property specifies sound files (known as an "auditory icon") to be played by speech media agents before and after presenting an element's content; if only one file is specified, it is played both before and after. The volume at which the file(s) should be played, relative to the volume of the main element, may also be specified. The icon files may also be set separately with the cue-before and cue-after properties. */ cue?: CSSWideKeyword | string /** * The cue-after property specifies a sound file (known as an "auditory icon") to be played by speech media agents after presenting an element's content; the volume at which the file should be played may also be specified. The shorthand property cue sets cue sounds for both before and after the element is presented. */ cueAfter?: CSSWideKeyword | string /** * Specifies the mouse cursor displayed when the mouse pointer is over an element. */ cursor?: CSSWideKeyword | string | number /** * The direction CSS property specifies the text direction/writing direction. The rtl is used for Hebrew or Arabic text, the ltr is for other languages. */ direction?: CSSWideKeyword | 'ltr' | 'rtl' /** * This property specifies the type of rendering box used for an element. It is a shorthand property for many other display properties. */ display /** turn off the display of an element and its descendants */?: | 'none' /** <display-outside> values. */ | 'block' | 'inline' | 'run-in' /** <display-inside> values. */ | 'flow' | 'flow-root' | 'table' | 'flex' | 'grid' | 'ruby' | 'subgrid' /** <display-outside> plus <display-inside> values */ | 'block flow' | 'inline table' | 'flex run-in' /** <display-listitem> values */ | 'list-item' | 'list-item block' | 'list-item inline' | 'list-item flow' | 'list-item flow-root' | 'list-item block flow' | 'list-item block flow-root' | 'flow list-item block' /** <display-internal> values. */ | 'table-row-group' | 'table-header-group' | 'table-footer-group' | 'table-row' | 'table-cell' | 'table-column-group' | 'table-column' | 'table-caption' | 'ruby-base' | 'ruby-text' | 'ruby-base-container' | 'ruby-text-container' /** <display-box> values. */ | 'contents' | 'none' /** <display-legacy> values. */ | 'inline-block' | 'inline-list-item' | 'inline-table' | 'inline-flex' | 'inline-grid' /** global values. */ | CSSWideKeyword /** * The ‘fill’ property paints the interior of the given graphical element. The area to be painted consists of any areas inside the outline of the shape. To determine the inside of the shape, all subpaths are considered, and the interior is determined according to the rules associated with the current value of the ‘fill-rule’ property. The zero-width geometric outline of a shape is included in the area to be painted. */ fill?: CSSWideKeyword | string /** * SVG: Specifies the opacity of the color or the content the current object is filled with. * See SVG 1.1 https://www.w3.org/TR/SVG/painting.html#FillOpacityProperty */ fillOpacity?: CSSWideKeyword | number /** * The ‘fill-rule’ property indicates the algorithm which is to be used to determine what parts of the canvas are included inside the shape. For a simple, non-intersecting path, it is intuitively clear what region lies "inside"; however, for a more complex path, such as a path that intersects itself or where one subpath encloses another, the interpretation of "inside" is not so obvious. * The ‘fill-rule’ property provides two options for how the inside of a shape is determined: */ fillRule?: CSSWideKeyword | 'nonzero' | 'evenodd' /** * Applies various image processing effects. This property is largely unsupported. See Compatibility section for more information. */ filter?: CSSWideKeyword | string | number /** * Shorthand for `flex-grow`, `flex-shrink`, and `flex-basis`. */ flex?: CSSWideKeyword | number | string /** * Obsolete, do not use. This property has been renamed to align-items. * Specifies the alignment (perpendicular to the layout axis defined by the flex-direction property) of child elements of the object. */ flexAlign?: CSSWideKeyword | {} /** * The flex-basis CSS property describes the initial main size of the flex item before any free space is distributed according to the flex factors described in the flex property (flex-grow and flex-shrink). */ flexBasis?: CSSWideKeyword | string | number /** * The flex-direction CSS property describes how flex items are placed in the flex container, by setting the direction of the flex container's main axis. */ flexDirection?: | CSSWideKeyword | 'row' | 'row-reverse' | 'column' | 'column-reverse' /** * The flex-flow CSS property defines the flex container's main and cross axis. It is a shorthand property for the flex-direction and flex-wrap properties. */ flexFlow?: | CSSWideKeyword // flex direction | 'row' | 'row-reverse' | 'column' | 'column-reverse' // flex wrap | 'nowrap' | 'wrap' | 'wrap-reverse' // flex direction + flex wrap | 'row nowrap' | 'row wrap' | 'row wrap-reverse' | 'row-reverse nowrap' | 'row-reverse wrap' | 'row-reverse wrap-reverse' | 'column nowrap' | 'column wrap' | 'column wrap-reverse' | 'column-reverse nowrap' | 'column-reverse wrap' | 'column-reverse wrap-reverse' // flex direction + flex wrap (reverse order) | 'nowrap row' | 'wrap row' | 'wrap-reverse row' | 'nowrap row-reverse' | 'wrap row-reverse' | 'wrap-reverse row-reverse' | 'nowrap column' | 'wrap column' | 'wrap-reverse column' | 'nowrap column-reverse' | 'wrap column-reverse' | 'wrap-reverse column-reverse' /** * Specifies the flex grow factor of a flex item. * See CSS flex-grow property https://drafts.csswg.org/css-flexbox-1/#flex-grow-property */ flexGrow?: CSSWideKeyword | number /** * Do not use. This property has been renamed to align-self * Specifies the alignment (perpendicular to the layout axis defined by flex-direction) of child elements of the object. */ flexItemAlign?: CSSWideKeyword | {} /** * Do not use. This property has been renamed to align-content. * Specifies how a flexbox's lines align within the flexbox when there is extra space along the axis that is perpendicular to the axis defined by the flex-direction property. */ flexLinePack?: CSSWideKeyword | {} /** * Gets or sets a value that specifies the ordinal group that a flexbox element belongs to. This ordinal value identifies the display order for the group. */ flexOrder?: CSSWideKeyword | {} /** * Specifies the flex shrink factor of a flex item. * See CSS flex-shrink property https://drafts.csswg.org/css-flexbox-1/#flex-shrink-property */ flexShrink?: CSSWideKeyword | number /** * Specifies whether flex items are forced into a single line or can be wrapped onto multiple lines. If wrapping is allowed, this property also enables you to control the direction in which lines are stacked. * See CSS flex-wrap property https://drafts.csswg.org/css-flexbox-1/#flex-wrap-property */ flexWrap?: CSSWideKeyword | 'nowrap' | 'wrap' | 'wrap-reverse' /** * Elements which have the style float are floated horizontally. These elements can move as far to the left or right of the containing element. All elements after the floating element will flow around it, but elements before the floating element are not impacted. If several floating elements are placed after each other, they will float next to each other as long as there is room. */ float?: | CSSWideKeyword | 'left' | 'right' | 'none' | 'inline-start' | 'inline-end' /** * Flows content from a named flow (specified by a corresponding flow-into) through selected elements to form a dynamic chain of layout regions. */ flowFrom?: CSSWideKeyword | {} /** * The font property is shorthand that allows you to do one of two things: you can either set up six of the most mature font properties in one line, or you can set one of a choice of keywords to adopt a system font setting. */ font?: CSSWideKeyword | string /** * The font-family property allows one or more font family names and/or generic family names to be specified for usage on the selected element(s)' text. The browser then goes through the list; for each character in the selection it applies the first font family that has an available glyph for that character. */ fontFamily?: CSSWideKeyword | string /** * The font-kerning property allows contextual adjustment of inter-glyph spacing, i.e. the spaces between the characters in text. This property controls <bold>metric kerning</bold> - that utilizes adjustment data contained in the font. Optical Kerning is not supported as yet. */ fontKerning?: CSSWideKeyword | 'auto' | 'normal' | 'none' /** * Specifies the size of the font. Used to compute em and ex units. * See CSS 3 font-size property https://www.w3.org/TR/css-fonts-3/#propdef-font-size */ fontSize?: CSSWideKeyword | string | number /** * The font-size-adjust property adjusts the font-size of the fallback fonts defined with font-family, so that the x-height is the same no matter what font is used. This preserves the readability of the text when fallback happens. * See CSS 3 font-size-adjust property https://www.w3.org/TR/css-fonts-3/#propdef-font-size-adjust */ fontSizeAdjust?: CSSWideKeyword | 'none' | number /** * Allows you to expand or condense the widths for a normal, condensed, or expanded font face. * See CSS 3 font-stretch property https://drafts.csswg.org/css-fonts-3/#propdef-font-stretch */ fontStretch?: | CSSWideKeyword | 'normal' | 'ultra-condensed' | 'extra-condensed' | 'condensed' | 'semi-condensed' | 'semi-expanded' | 'expanded' | 'extra-expanded' | 'ultra-expanded' /** * The font-style property allows normal, italic, or oblique faces to be selected. Italic forms are generally cursive in nature while oblique faces are typically sloped versions of the regular face. Oblique faces can be simulated by artificially sloping the glyphs of the regular face. * See CSS 3 font-style property https://www.w3.org/TR/css-fonts-3/#propdef-font-style */ fontStyle?: CSSWideKeyword | 'normal' | 'italic' | 'oblique' /** * This value specifies whether the user agent is allowed to synthesize bold or oblique font faces when a font family lacks bold or italic faces. */ fontSynthesis?: CSSWideKeyword | string /** * The font-variant property enables you to select the small-caps font within a font family. */ fontVariant?: CSSWideKeyword | string | number /** * Fonts can provide alternate glyphs in addition to default glyph for a character. This property provides control over the selection of these alternate glyphs. */ fontVariantAlternates?: CSSWideKeyword | string | number /** * Specifies the weight or boldness of the font. * See CSS 3 'font-weight' property https://www.w3.org/TR/css-fonts-3/#propdef-font-weight */ fontWeight?: | CSSWideKeyword | 'normal' | 'bold' | 'bolder' | 'lighter' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 /** * Lays out one or more grid items bound by 4 grid lines. Shorthand for setting grid-column-start, grid-column-end, grid-row-start, and grid-row-end in a single declaration. */ gridArea?: CSSWideKeyword | string | number /** * Controls a grid item's placement in a grid area, particularly grid position and a grid span. Shorthand for setting grid-column-start and grid-column-end in a single declaration. */ gridColumn?: CSSWideKeyword | string | number /** * Controls a grid item's placement in a grid area as well as grid position and a grid span. The grid-column-end property (with grid-row-start, grid-row-end, and grid-column-start) determines a grid item's placement by specifying the grid lines of a grid item's grid area. */ gridColumnEnd?: CSSWideKeyword | string | number /** * Determines a grid item's placement by specifying the starting grid lines of a grid item's grid area . A grid item's placement in a grid area consists of a grid position and a grid span. See also ( grid-row-start, grid-row-end, and grid-column-end) */ gridColumnStart?: CSSWideKeyword | string | number /** * Gets or sets a value that indicates which row an element within a Grid should appear in. Shorthand for setting grid-row-start and grid-row-end in a single declaration. */ gridRow?: CSSWideKeyword | string | number /** * Determines a grid item’s placement by specifying the block-end. A grid item's placement in a grid area consists of a grid position and a grid span. The grid-row-end property (with grid-row-start, grid-column-start, and grid-column-end) determines a grid item's placement by specifying the grid lines of a grid item's grid area. */ gridRowEnd?: CSSWideKeyword | string | number /** * Specifies a row position based upon an integer location, string value, or desired row size. * css/properties/grid-row is used as short-hand for grid-row-position and grid-row-position */ gridRowPosition?: CSSWideKeyword | string | number gridRowSpan?: CSSWideKeyword | number /** * Specifies named grid areas which are not associated with any particular grid item, but can be referenced from the grid-placement properties. The syntax of the grid-template-areas property also provides a visualization of the structure of the grid, making the overall layout of the grid container easier to understand. */ gridTemplateAreas?: CSSWideKeyword | string /** * Specifies (with grid-template-rows) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. */ gridTemplateColumns?: CSSWideKeyword | string | number /** * Specifies (with grid-template-columns) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. */ gridTemplateRows?: CSSWideKeyword | string | number /** * Sets the height of an element. The content area of the element height does not include the padding, border, and margin of the element. */ height?: CSSWideKeyword | string | number /** * Specifies the minimum number of characters in a hyphenated word */ hyphenateLimitChars?: CSSWideKeyword | 'auto' | number /** * Indicates the maximum number of successive hyphenated lines in an element. The ‘no-limit’ value means that there is no limit. */ hyphenateLimitLines?: CSSWideKeyword | 'no-limit' | number /** * Specifies the maximum amount of trailing whitespace (before justification) that may be left in a line before hyphenation is triggered to pull part of a word from the next line back up into the current one. */ hyphenateLimitZone?: CSSWideKeyword | string | number /** * Specifies whether or not words in a sentence can be split by the use of a manual or automatic hyphenation mechanism. */ hyphens?: CSSWideKeyword | 'none' | 'manual' | 'auto' imeMode?: | CSSWideKeyword | 'auto' | 'normal' | 'active' | 'inactive' | 'disabled' /** * Defines how the browser distributes space between and around flex items * along the main-axis of their container. * See CSS justify-content property https://www.w3.org/TR/css-flexbox-1/#justify-content-property */ justifyContent?: | CSSWideKeyword | 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' layoutGrid?: CSSWideKeyword | string | number layoutGridChar?: CSSWideKeyword | string | number layoutGridLine?: CSSWideKeyword | string | number layoutGridMode?: CSSWideKeyword | string | number layoutGridType?: CSSWideKeyword | 'loose' | 'strict' | 'fixed' /** * Sets the left edge of an element */ left?: CSSWideKeyword | string | number /** * The letter-spacing CSS property specifies the spacing behavior between text characters. */ letterSpacing?: CSSWideKeyword | string | number /** * Deprecated. Gets or sets line-breaking rules for text in selected languages such as Japanese, Chinese, and Korean. */ lineBreak?: CSSWideKeyword | 'auto' | 'loose' | 'normal' | 'strict' lineClamp?: CSSWideKeyword | number /** * Specifies the height of an inline block level element. * See CSS 2.1 line-height property https://www.w3.org/TR/CSS21/visudet.html#propdef-line-height */ lineHeight?: CSSWideKeyword | string | number /** * Shorthand property that sets the list-style-type, list-style-position and list-style-image properties in one declaration. */ listStyle?: CSSWideKeyword | string | number /** * This property sets the image that will be used as the list item marker. When the image is available, it will replace the marker set with the 'list-style-type' marker. That also means that if the image is not available, it will show the style specified by list-style-property */ listStyleImage?: CSSWideKeyword | string /** * Specifies if the list-item markers should appear inside or outside the content flow. */ listStylePosition?: CSSWideKeyword | 'inside' | 'outside' /** * Specifies the type of list-item marker in a list. */ listStyleType?: CSSWideKeyword | string | number /** * The margin property is shorthand to allow you to set all four margins of an element at once. Its equivalent longhand properties are margin-top, margin-right, margin-bottom and margin-left. Negative values are also allowed. */ margin?: CSSWideKeyword | string | number /** * margin-bottom sets the bottom margin of an element. */ marginBottom?: CSSWideKeyword | string | number /** * margin-left sets the left margin of an element. */ marginLeft?: CSSWideKeyword | string | number /** * margin-right sets the right margin of an element. */ marginRight?: CSSWideKeyword | string | number /** * margin-top sets the top margin of an element. */ marginTop?: CSSWideKeyword | string | number /** * The marquee-direction determines the initial direction in which the marquee content moves. */ marqueeDirection?: CSSWideKeyword | string /** * The 'marquee-style' property determines a marquee's scrolling behavior. */ marqueeStyle?: CSSWideKeyword | string /** * This property is shorthand for setting mask-image, mask-mode, mask-repeat, mask-position, mask-clip, mask-origin, mask-composite and mask-size. Omitted values are set to their original properties' initial values. */ mask?: CSSWideKeyword | string | number /** * This property is shorthand for setting mask-border-source, mask-border-slice, mask-border-width, mask-border-outset, and mask-border-repeat. Omitted values are set to their original properties' initial values. */ maskBorder?: CSSWideKeyword | string | number /** * This property specifies how the images for the sides and the middle part of the mask image are scaled and tiled. The first keyword applies to the horizontal sides, the second one applies to the vertical ones. If the second keyword is absent, it is assumed to be the same as the first, similar to the CSS border-image-repeat property. */ maskBorderRepeat?: CSSWideKeyword | string | number /** * This property specifies inward offsets from the top, right, bottom, and left edges of the mask image, dividing it into nine regions: four corners, four edges, and a middle. The middle image part is discarded and treated as fully transparent black unless the fill keyword is present. The four values set the top, right, bottom and left offsets in that order, similar to the CSS border-image-slice property. */ maskBorderSlice?: CSSWideKeyword | string | number /** * Specifies an image to be used as a mask. An image that is empty, fails to download, is non-existent, or cannot be displayed is ignored and does not mask the element. */ maskBorderSource?: CSSWideKeyword | string | number /** * This property sets the width of the mask box image, similar to the CSS border-image-width property. */ maskBorderWidth?: CSSWideKeyword | string | number /** * Determines the mask painting area, which defines the area that is affected by the mask. The painted content of an element may be restricted to this area. */ maskClip?: CSSWideKeyword | string | number /** * For elements rendered as a single box, specifies the mask positioning area. For elements rendered as multiple boxes (e.g., inline boxes on several lines, boxes on several pages) specifies which boxes box-decoration-break operates on to determine the mask positioning area(s). */ maskOrigin?: CSSWideKeyword | string | number /** * This property must not be used. It is no longer included in any standard or standard track specification, nor is it implemented in any browser. It is only used when the text-align-last property is set to size. It controls allowed adjustments of font-size to fit line content. */ maxFontSize?: CSSWideKeyword | string | number /** * Sets the maximum height for an element. It prevents the height of the element to exceed the specified value. If min-height is specified and is greater than max-height, max-height is overridden. */ maxHeight?: CSSWideKeyword | string | number /** * Sets the maximum width for an element. It limits the width property to be larger than the value specified in max-width. */ maxWidth?: CSSWideKeyword | string | number /** * Sets the minimum height for an element. It prevents the height of the element to be smaller than the specified value. The value of min-height overrides both max-height and height. */ minHeight?: CSSWideKeyword | string | number /** * Sets the minimum width of an element. It limits the width property to be not smaller than the value specified in min-width. */ minWidth?: CSSWideKeyword | string | number /** * Specifies the transparency of an element. * See CSS 3 opacity property https://drafts.csswg.org/css-color-3/#opacity */ opacity?: CSSWideKeyword | number /** * Specifies the order used to lay out flex items in their flex container. * Elements are laid out in the ascending order of the order value. * See CSS order property https://drafts.csswg.org/css-flexbox-1/#order-property */ order?: CSSWideKeyword | number /** * In paged media, this property defines the minimum number of lines in * a block container that must be left at the bottom of the page. * See CSS 3 orphans, widows properties https://drafts.csswg.org/css-break-3/#widows-orphans */ orphans?: CSSWideKeyword | number /** * The CSS outline property is a shorthand property for setting one or more of the individual outline properties outline-style, outline-width and outline-color in a single rule. In most cases the use of this shortcut is preferable and more convenient. * Outlines differ from borders in the following ways: * • Outlines do not take up space, they are drawn above the content. * • Outlines may be non-rectangular. They are rectangular in Gecko/Firefox. Internet Explorer attempts to place the smallest contiguous outline around all elements or shapes that are indicated to have an outline. Opera draws a non-rectangular shape around a construct. */ outline?: CSSWideKeyword | string | number /** * The outline-color property sets the color of the outline of an element. An outline is a line that is drawn around elements, outside the border edge, to make the element stand out. */ outlineColor?: CSSWideKeyword | string | number /** * The outline-offset property offsets the outline and draw it beyond the border edge. */ outlineOffset?: CSSWideKeyword | string | number /** * The overflow property controls how extra content exceeding the bounding box of an element is rendered. It can be used in conjunction with an element that has a fixed width and height, to eliminate text-induced page distortion. */ overflow?: CSSWideKeyword | 'auto' | 'hidden' | 'scroll' | 'visible' /** * Specifies the preferred scrolling methods for elements that overflow. */ overflowStyle?: | CSSWideKeyword | 'auto' | 'none' | 'scrollbar' | '-ms-autohiding-scrollbar' /** * Controls how extra content exceeding the x-axis of the bounding box of an element is rendered. */ overflowX?: CSSWideKeyword | 'auto' | 'hidden' | 'scroll' | 'visible' /** * Controls how extra content exceeding the y-axis of the bounding box of an element is rendered. */ overflowY?: CSSWideKeyword | 'auto' | 'hidden' | 'scroll' | 'visible' /** * The padding optional CSS property sets the required padding space on one to four sides of an element. The padding area is the space between an element and its border. Negative values are not allowed but decimal values are permitted. The element size is treated as fixed, and the content of the element shifts toward the center as padding is increased. * The padding property is a shorthand to avoid setting each side separately (padding-top, padding-right, padding-bottom, padding-left). */ padding?: CSSWideKeyword | string | number /** * The padding-bottom CSS property of an element sets the padding space required on the bottom of an element. The padding area is the space between the content of the element and its border. Contrary to margin-bottom values, negative values of padding-bottom are invalid. */ paddingBottom?: CSSWideKeyword | string | number /** * The padding-left CSS property of an element sets the padding space required on the left side of an element. The padding area is the space between the content of the element and its border. Contrary to margin-left values, negative values of padding-left are invalid. */ paddingLeft?: CSSWideKeyword | string | number /** * The padding-right CSS property of an element sets the padding space required on the right side of an element. The padding area is the space between the content of the element and its border. Contrary to margin-right values, negative values of padding-right are invalid. */ paddingRight?: CSSWideKeyword | string | number /** * The padding-top CSS property of an element sets the padding space required on the top of an element. The padding area is the space between the content of the element and its border. Contrary to margin-top values, negative values of padding-top are invalid. */ paddingTop?: CSSWideKeyword | string | number /** * The page-break-after property is supported in all major browsers. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. */ pageBreakAfter?: | CSSWideKeyword | 'auto' | 'always' | 'avoid' | 'left' | 'right' /** * The page-break-before property sets the page-breaking behavior before an element. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. */ pageBreakBefore?: | CSSWideKeyword | 'auto' | 'always' | 'avoid' | 'left' | 'right' /** * Sets the page-breaking behavior inside an element. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. */ pageBreakInside?: CSSWideKeyword | 'auto' | 'avoid' /** * The pause pro