├── .gitignore ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── Sources └── SwiftCss │ ├── Builders │ ├── PropertyBuilder.swift │ ├── RuleBuilder.swift │ └── SelectorBuilder.swift │ ├── Components │ ├── CSSColor+BuiltIn.swift │ ├── CSSColor.swift │ ├── CSSColorValue.swift │ ├── HTMLElement.swift │ ├── Property.swift │ ├── Pseudo.swift │ ├── Rule.swift │ ├── Selector+Modifiers.swift │ ├── Selector+Types.swift │ ├── Selector.swift │ ├── Unit.swift │ └── Variable.swift │ ├── Properties │ ├── AlignContent.swift │ ├── AlignItems.swift │ ├── AlignSelf.swift │ ├── All.swift │ ├── Animation.swift │ ├── AnimationDelay.swift │ ├── AnimationDirection.swift │ ├── AnimationDuration.swift │ ├── AnimationFillMode.swift │ ├── AnimationIterationCount.swift │ ├── AnimationName.swift │ ├── AnimationPlayState.swift │ ├── AnimationTimingFunction.swift │ ├── BackfaceVisibility.swift │ ├── Background.swift │ ├── BackgroundAttachment.swift │ ├── BackgroundBlendMode.swift │ ├── BackgroundClip.swift │ ├── BackgroundColor.swift │ ├── BackgroundImage.swift │ ├── BackgroundOrigin.swift │ ├── BackgroundPosition.swift │ ├── BackgroundRepeat.swift │ ├── BackgroundSize.swift │ ├── Border.swift │ ├── BorderBottom.swift │ ├── BorderBottomColor.swift │ ├── BorderBottomLeftRadius.swift │ ├── BorderBottomRightRadius.swift │ ├── BorderBottomStyle.swift │ ├── BorderBottomWidth.swift │ ├── BorderCollapse.swift │ ├── BorderColor.swift │ ├── BorderImage.swift │ ├── BorderImageOutset.swift │ ├── BorderImageRepeat.swift │ ├── BorderImageSlice.swift │ ├── BorderImageSource.swift │ ├── BorderImageWidth.swift │ ├── BorderLeft.swift │ ├── BorderLeftColor.swift │ ├── BorderLeftStyle.swift │ ├── BorderLeftWidth.swift │ ├── BorderRadius.swift │ ├── BorderRight.swift │ ├── BorderRightColor.swift │ ├── BorderRightStyle.swift │ ├── BorderRightWidth.swift │ ├── BorderSpacing.swift │ ├── BorderStyle.swift │ ├── BorderTop.swift │ ├── BorderTopColor.swift │ ├── BorderTopLeftRadius.swift │ ├── BorderTopRightRadius.swift │ ├── BorderTopStyle.swift │ ├── BorderTopWidth.swift │ ├── BorderWidth.swift │ ├── Bottom.swift │ ├── BoxDecorationBreak.swift │ ├── BoxShadow.swift │ ├── BoxSizing.swift │ ├── BreakAfter.swift │ ├── BreakBefore.swift │ ├── BreakInside.swift │ ├── CaptionSide.swift │ ├── CaretColor.swift │ ├── Clear.swift │ ├── Clip.swift │ ├── Color.swift │ ├── ColumnCount.swift │ ├── ColumnFill.swift │ ├── ColumnGap.swift │ ├── ColumnRule.swift │ ├── ColumnRuleColor.swift │ ├── ColumnRuleStyle.swift │ ├── ColumnRuleWidth.swift │ ├── ColumnSpan.swift │ ├── ColumnWidth.swift │ ├── Columns.swift │ ├── Content.swift │ ├── CounterIncrement.swift │ ├── CounterReset.swift │ ├── Cursor.swift │ ├── Direction.swift │ ├── Display.swift │ ├── EmptyCells.swift │ ├── Filter.swift │ ├── Flex.swift │ ├── FlexBasis.swift │ ├── FlexDirection.swift │ ├── FlexFlow.swift │ ├── FlexGrow.swift │ ├── FlexShrink.swift │ ├── FlexWrap.swift │ ├── Float.swift │ ├── Font.swift │ ├── FontFamily.swift │ ├── FontFeatureSettings.swift │ ├── FontKerning.swift │ ├── FontLanguageOverride.swift │ ├── FontSize.swift │ ├── FontSizeAdjust.swift │ ├── FontStretch.swift │ ├── FontStyle.swift │ ├── FontSynthesis.swift │ ├── FontVariant.swift │ ├── FontVariantAlternates.swift │ ├── FontVariantCaps.swift │ ├── FontVariantEastAsian.swift │ ├── FontVariantLigatures.swift │ ├── FontVariantNumeric.swift │ ├── FontVariantPosition.swift │ ├── FontWeight.swift │ ├── Gap.swift │ ├── Grid.swift │ ├── GridArea.swift │ ├── GridAutoColumns.swift │ ├── GridAutoFlow.swift │ ├── GridAutoRows.swift │ ├── GridColumn.swift │ ├── GridColumnEnd.swift │ ├── GridColumnGap.swift │ ├── GridColumnStart.swift │ ├── GridGap.swift │ ├── GridRow.swift │ ├── GridRowEnd.swift │ ├── GridRowGap.swift │ ├── GridRowStart.swift │ ├── GridTemplate.swift │ ├── GridTemplateAreas.swift │ ├── GridTemplateColumns.swift │ ├── GridTemplateRows.swift │ ├── HangingPunctuation.swift │ ├── Height.swift │ ├── Hyphens.swift │ ├── ImageRendering.swift │ ├── Isolation.swift │ ├── JustifyContent.swift │ ├── Left.swift │ ├── LetterSpacing.swift │ ├── LineBreak.swift │ ├── LineHeight.swift │ ├── ListStyle.swift │ ├── ListStyleImage.swift │ ├── ListStylePosition.swift │ ├── ListStyleType.swift │ ├── Margin.swift │ ├── MarginBottom.swift │ ├── MarginLeft.swift │ ├── MarginRight.swift │ ├── MarginTop.swift │ ├── Mask.swift │ ├── MaskType.swift │ ├── MaxHeight.swift │ ├── MaxWidth.swift │ ├── MinHeight.swift │ ├── MinWidth.swift │ ├── MixBlendMode.swift │ ├── ObjectFit.swift │ ├── ObjectPosition.swift │ ├── Opacity.swift │ ├── Order.swift │ ├── Orphans.swift │ ├── Outline.swift │ ├── OutlineColor.swift │ ├── OutlineOffset.swift │ ├── OutlineStyle.swift │ ├── OutlineWidth.swift │ ├── Overflow.swift │ ├── OverflowWrap.swift │ ├── OverflowX.swift │ ├── OverflowY.swift │ ├── Padding.swift │ ├── PaddingBottom.swift │ ├── PaddingLeft.swift │ ├── PaddingRight.swift │ ├── PaddingTop.swift │ ├── PageBreakAfter.swift │ ├── PageBreakBefore.swift │ ├── PageBreakInside.swift │ ├── Perspective.swift │ ├── PerspectiveOrigin.swift │ ├── PointerEvents.swift │ ├── Position.swift │ ├── Quotes.swift │ ├── Resize.swift │ ├── Right.swift │ ├── RowGap.swift │ ├── ScrollBehavior.swift │ ├── TabSize.swift │ ├── TableLayout.swift │ ├── TextAlign.swift │ ├── TextAlignLast.swift │ ├── TextCombineUpright.swift │ ├── TextDecoration.swift │ ├── TextDecorationColor.swift │ ├── TextDecorationLine.swift │ ├── TextDecorationStyle.swift │ ├── TextIndent.swift │ ├── TextJustify.swift │ ├── TextOrientation.swift │ ├── TextOverflow.swift │ ├── TextShadow.swift │ ├── TextTransform.swift │ ├── TextUnderlinePosition.swift │ ├── Top.swift │ ├── Transform.swift │ ├── TransformOrigin.swift │ ├── TransformStyle.swift │ ├── Transition.swift │ ├── TransitionDelay.swift │ ├── TransitionDuration.swift │ ├── TransitionProperty.swift │ ├── TransitionTimingFunction.swift │ ├── UnicodeBidi.swift │ ├── UserSelect.swift │ ├── VerticalAlign.swift │ ├── Visibility.swift │ ├── WhiteSpace.swift │ ├── Widows.swift │ ├── Width.swift │ ├── WordBreak.swift │ ├── WordSpacing.swift │ ├── WordWrap.swift │ ├── WritingMode.swift │ └── ZIndex.swift │ ├── Rules │ ├── Charset.swift │ ├── FontFace.swift │ ├── Import.swift │ ├── Keyframes.swift │ └── Media.swift │ └── Stylesheet │ ├── Stylesheet.swift │ └── StylesheetRenderer.swift └── Tests └── SwiftCssTests ├── SelectorTests.swift └── SwiftCssTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftCss/Builders/PropertyBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Builders/PropertyBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Builders/RuleBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Builders/RuleBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Builders/SelectorBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Builders/SelectorBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/CSSColor+BuiltIn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/CSSColor+BuiltIn.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/CSSColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/CSSColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/CSSColorValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/CSSColorValue.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/HTMLElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/HTMLElement.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Property.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Pseudo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Pseudo.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Rule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Rule.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Selector+Modifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Selector+Modifiers.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Selector+Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Selector+Types.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Selector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Selector.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Unit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Unit.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Components/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Components/Variable.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AlignContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AlignContent.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AlignItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AlignItems.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AlignSelf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AlignSelf.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/All.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/All.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Animation.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationDelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationDelay.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationDirection.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationDuration.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationFillMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationFillMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationIterationCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationIterationCount.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationName.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationPlayState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationPlayState.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/AnimationTimingFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/AnimationTimingFunction.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackfaceVisibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackfaceVisibility.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Background.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundAttachment.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundBlendMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundBlendMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundClip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundClip.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundImage.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundOrigin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundOrigin.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundPosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundRepeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundRepeat.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BackgroundSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BackgroundSize.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Border.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Border.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottom.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottomColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottomColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottomLeftRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottomLeftRadius.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottomRightRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottomRightRadius.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottomStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottomStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderBottomWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderBottomWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderCollapse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderCollapse.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImage.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImageOutset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImageOutset.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImageRepeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImageRepeat.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImageSlice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImageSlice.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImageSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImageSource.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderImageWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderImageWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderLeft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderLeft.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderLeftColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderLeftColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderLeftStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderLeftStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderLeftWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderLeftWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderRadius.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderRight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderRight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderRightColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderRightColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderRightStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderRightStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderRightWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderRightWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderSpacing.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTop.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTopColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTopColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTopLeftRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTopLeftRadius.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTopRightRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTopRightRadius.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTopStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTopStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderTopWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderTopWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BorderWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BorderWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Bottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Bottom.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BoxDecorationBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BoxDecorationBreak.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BoxShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BoxShadow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BoxSizing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BoxSizing.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BreakAfter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BreakAfter.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BreakBefore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BreakBefore.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/BreakInside.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/BreakInside.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/CaptionSide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/CaptionSide.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/CaretColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/CaretColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Clear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Clear.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Clip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Clip.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Color.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnCount.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnFill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnFill.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnGap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnGap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnRule.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnRuleColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnRuleColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnRuleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnRuleStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnRuleWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnRuleWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnSpan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnSpan.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ColumnWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ColumnWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Columns.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Columns.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Content.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/CounterIncrement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/CounterIncrement.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/CounterReset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/CounterReset.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Cursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Cursor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Direction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Direction.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Display.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/EmptyCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/EmptyCells.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Filter.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Flex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Flex.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexBasis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexBasis.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexDirection.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexFlow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexGrow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexGrow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexShrink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexShrink.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FlexWrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FlexWrap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Float.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Float.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Font.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontFamily.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontFamily.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontFeatureSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontFeatureSettings.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontKerning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontKerning.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontLanguageOverride.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontLanguageOverride.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontSize.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontSizeAdjust.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontSizeAdjust.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontStretch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontStretch.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontSynthesis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontSynthesis.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariant.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantAlternates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantAlternates.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantCaps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantCaps.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantEastAsian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantEastAsian.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantLigatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantLigatures.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantNumeric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantNumeric.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontVariantPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontVariantPosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/FontWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/FontWeight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Gap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Gap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Grid.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridArea.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridAutoColumns.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridAutoColumns.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridAutoFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridAutoFlow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridAutoRows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridAutoRows.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridColumn.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridColumnEnd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridColumnEnd.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridColumnGap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridColumnGap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridColumnStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridColumnStart.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridGap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridGap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridRow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridRowEnd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridRowEnd.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridRowGap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridRowGap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridRowStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridRowStart.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridTemplate.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridTemplateAreas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridTemplateAreas.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridTemplateColumns.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridTemplateColumns.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/GridTemplateRows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/GridTemplateRows.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/HangingPunctuation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/HangingPunctuation.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Height.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Height.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Hyphens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Hyphens.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ImageRendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ImageRendering.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Isolation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Isolation.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/JustifyContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/JustifyContent.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Left.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Left.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/LetterSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/LetterSpacing.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/LineBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/LineBreak.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/LineHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/LineHeight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ListStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ListStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ListStyleImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ListStyleImage.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ListStylePosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ListStylePosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ListStyleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ListStyleType.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Margin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Margin.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MarginBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MarginBottom.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MarginLeft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MarginLeft.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MarginRight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MarginRight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MarginTop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MarginTop.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Mask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Mask.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MaskType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MaskType.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MaxHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MaxHeight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MaxWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MaxWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MinHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MinHeight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MinWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MinWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/MixBlendMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/MixBlendMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ObjectFit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ObjectFit.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ObjectPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ObjectPosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Opacity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Opacity.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Order.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Order.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Orphans.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Orphans.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Outline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Outline.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OutlineColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OutlineColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OutlineOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OutlineOffset.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OutlineStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OutlineStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OutlineWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OutlineWidth.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Overflow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Overflow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OverflowWrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OverflowWrap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OverflowX.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OverflowX.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/OverflowY.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/OverflowY.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Padding.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PaddingBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PaddingBottom.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PaddingLeft.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PaddingLeft.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PaddingRight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PaddingRight.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PaddingTop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PaddingTop.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PageBreakAfter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PageBreakAfter.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PageBreakBefore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PageBreakBefore.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PageBreakInside.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PageBreakInside.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Perspective.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Perspective.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PerspectiveOrigin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PerspectiveOrigin.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/PointerEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/PointerEvents.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Position.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Quotes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Quotes.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Resize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Resize.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Right.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Right.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/RowGap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/RowGap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ScrollBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ScrollBehavior.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TabSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TabSize.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TableLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TableLayout.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextAlign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextAlign.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextAlignLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextAlignLast.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextCombineUpright.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextCombineUpright.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextDecoration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextDecoration.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextDecorationColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextDecorationColor.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextDecorationLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextDecorationLine.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextDecorationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextDecorationStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextIndent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextIndent.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextJustify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextJustify.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextOrientation.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextOverflow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextOverflow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextShadow.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextTransform.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TextUnderlinePosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TextUnderlinePosition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Top.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Top.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Transform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Transform.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransformOrigin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransformOrigin.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransformStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransformStyle.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Transition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Transition.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransitionDelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransitionDelay.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransitionDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransitionDuration.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransitionProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransitionProperty.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/TransitionTimingFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/TransitionTimingFunction.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/UnicodeBidi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/UnicodeBidi.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/UserSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/UserSelect.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/VerticalAlign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/VerticalAlign.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Visibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Visibility.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/WhiteSpace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/WhiteSpace.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Widows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Widows.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/Width.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/Width.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/WordBreak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/WordBreak.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/WordSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/WordSpacing.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/WordWrap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/WordWrap.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/WritingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/WritingMode.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Properties/ZIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Properties/ZIndex.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Rules/Charset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Rules/Charset.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Rules/FontFace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Rules/FontFace.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Rules/Import.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Rules/Import.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Rules/Keyframes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Rules/Keyframes.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Rules/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Rules/Media.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Stylesheet/Stylesheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Stylesheet/Stylesheet.swift -------------------------------------------------------------------------------- /Sources/SwiftCss/Stylesheet/StylesheetRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Sources/SwiftCss/Stylesheet/StylesheetRenderer.swift -------------------------------------------------------------------------------- /Tests/SwiftCssTests/SelectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Tests/SwiftCssTests/SelectorTests.swift -------------------------------------------------------------------------------- /Tests/SwiftCssTests/SwiftCssTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BinaryBirds/swift-css/HEAD/Tests/SwiftCssTests/SwiftCssTests.swift --------------------------------------------------------------------------------