Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomProp ¶ added in v0.0.5
type CustomProp struct {
Attr, Value string
}
CustomProp represents an additional CSS property that is not covered by the Props struct.
type Props ¶
type Props struct {
AlignContent props.AlignContent `css:"align-content"`
AlignItems props.AlignItems `css:"align-items"`
AlignSelf props.AlignSelf `css:"align-self"`
Appearance props.Appearance `css:"appearance"`
BackgroundColor props.Color `css:"background-color"`
BackgroundImage props.BackgroundImage `css:"background-image"`
BackgroundPosition props.BackgroundPosition `css:"background-position"`
BackgroundRepeat props.BackgroundRepeat `css:"background-repeat"`
BackgroundSize props.BackgroundSize `css:"background-size"`
Border props.Border `css:"border"`
BorderBottom props.Border `css:"border-bottom"`
BorderBottomLeftRadius props.Unit `css:"border-bottom-left-radius"`
BorderBottomRightRadius props.Unit `css:"border-bottom-right-radius"`
BorderCollapse props.BorderCollapse `css:"border-collapse"`
BorderColor props.Color `css:"border-color"`
BorderLeft props.Border `css:"border-left"`
BorderRadius props.Unit `css:"border-radius"`
BorderRight props.Border `css:"border-right"`
BorderStyle props.BorderStyle `css:"border-style"`
BorderTop props.Border `css:"border-top"`
BorderTopLeftRadius props.Unit `css:"border-top-left-radius"`
BorderTopRightRadius props.Unit `css:"border-top-right-radius"`
BorderWidth props.Unit `css:"border-width"`
Bottom props.Unit `css:"bottom"`
BoxSizing props.BoxSizing `css:"box-sizing"`
CaptionSide props.CaptionSide `css:"caption-side"`
Color props.Color `css:"color"`
ColumnGap props.Unit `css:"column-gap"`
Cursor props.Cursor `css:"cursor"`
Display props.Display `css:"display"`
FlexBasis props.Unit `css:"flex-basis"`
FlexDirection props.FlexDirection `css:"flex-direction"`
FlexGrow props.Unit `css:"flex-grow"`
FlexShrink props.Unit `css:"flex-shrink"`
FlexWrap props.FlexWrap `css:"flex-wrap"`
Float props.Float `css:"float"`
FontFamily props.FontFamily `css:"font-family"`
FontSize props.Unit `css:"font-size"`
FontStyle props.FontStyle `css:"font-style"`
FontWeight props.FontWeight `css:"font-weight"`
Gap props.Unit `css:"gap"`
Height props.Unit `css:"height"`
JustifyContent props.JustifyContent `css:"justify-content"`
JustifyItems props.JustifyItems `css:"justify-items"`
JustifySelf props.JustifySelf `css:"justify-self"`
Left props.Unit `css:"left"`
LineHeight props.Unit `css:"line-height"`
ListStylePosition props.ListStylePosition `css:"list-style-position"`
ListStyleType props.ListStyleType `css:"list-style-type"`
Margin props.Unit `css:"margin"`
MarginBottom props.Unit `css:"margin-bottom"`
MarginLeft props.Unit `css:"margin-left"`
MarginRight props.Unit `css:"margin-right"`
MarginTop props.Unit `css:"margin-top"`
MaxHeight props.Unit `css:"max-height"`
MaxWidth props.Unit `css:"max-width"`
MinHeight props.Unit `css:"min-height"`
MinWidth props.Unit `css:"min-width"`
Opacity props.Unit `css:"opacity"`
Overflow props.Overflow `css:"overflow"`
OverflowX props.Overflow `css:"overflow-x"`
OverflowY props.Overflow `css:"overflow-y"`
Padding props.Unit `css:"padding"`
PaddingBottom props.Unit `css:"padding-bottom"`
PaddingLeft props.Unit `css:"padding-left"`
PaddingRight props.Unit `css:"padding-right"`
PaddingTop props.Unit `css:"padding-top"`
Position props.Position `css:"position"`
PrintColorAdjust props.PrintColorAdjust `css:"print-color-adjust"`
Right props.Unit `css:"right"`
RowGap props.Unit `css:"row-gap"`
TextAlign props.TextAlign `css:"text-align"`
TextDecorationColor props.Color `css:"text-decoration-color"`
TextDecorationLine props.TextDecorationLine `css:"text-decoration-line"`
TextDecorationStyle props.TextDecorationStyle `css:"text-decoration-style"`
TextDecorationThickness props.Unit `css:"text-decoration-thickness"`
TextIndent props.Unit `css:"text-indent"`
TextOverflow props.TextOverflow `css:"text-overflow"`
TextTransform props.TextTransform `css:"text-transform"`
TextUnderlineOffset props.Unit `css:"text-underline-offset"`
TextWrap props.TextWrap `css:"text-wrap"`
Top props.Unit `css:"top"`
VerticalAlign props.VerticalAlign `css:"vertical-align"`
WhiteSpace props.WhiteSpace `css:"white-space"`
Width props.Unit `css:"width"`
Visibility props.Visibility `css:"visibility"`
ZIndex props.Unit `css:"z-index"`
}
Props represents the standard CSS properties that can be applied to a CSS rule.
type Style ¶
type Style struct {
// Selector is the CSS selector to which the properties will be applied.
// It can be any valid CSS selector like class, id, element type, etc.
Selector string
// Props contains the standard CSS properties that will be applied to the selector.
// These properties are represented by the Props struct and are strongly typed.
Props Props
// CustomProps contains any additional CSS properties that are not covered by the Props struct.
// These properties are directly added to the CSS rule as is.
CustomProps []CustomProp
}
Style represents a CSS style rule.
Directories
¶
| Path | Synopsis |
|---|---|
|
examples
|
|
|
css-resets
command
|
|
|
full
command
|
|
|
media-queries
command
|
|
|
to-file
command
|
|
|
to-http-handler
command
|
|
|
to-stdout
command
|
|
|
integration-templ
module
|
|
Click to show internal directories.
Click to hide internal directories.