Bjorn-Strom / FSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fss

Build Status Tests GitHub license

Fss is a dependency free CSS library for dotnet that provides statically typed styling for your projects and aims to cover a huge part of the CSS spec.

It gives you CSS as a first class citizen in your projects and was made to be predictable and easy to use.

Fss gives you the option to generate styles at runtime or to ouptut into CSS files.

Examples πŸ€“

Quick Elmish example here, check the documentation for more information.

let buttonStyle =
    fss
        [
            BackgroundColor.hex "44c767"
            BorderRadius.value (px 30)
            BorderWidth.value (px 1)
            BorderStyle.solid
            BorderColor.hex "18ab29"
            Display.inlineBlock
            Cursor.pointer
            FontSize.value (px 17)
            Hover
                [
                    BackgroundColor.hex "5cbf2a"
                ]
        ]
button [ ClassName buttonStyle ] [ str "Click me" ]

You can also check out this sample repo: samples.

Installation πŸ’Ύ

Install the Nuget package you need. If you are using Fable or Feliz then you probably want Fss.Fable or Fss.Feliz. If you are using Giraffe then you probably want Fss.Giraffe, and if you are using Falco then you probably want Fss.Falco. Doing something custom or extending Fss? Then you probably want Fss.Core.

Package NuGet Downloads
Fss.Core Nuget Nuget
Fss.Fable Nuget Nuget
Fss.Feliz Nuget Nuget
Fss.Giraffe Nuget Nuget
Fss.Falco Nuget Nuget
Fss.Static Nuget Nuget
Fss.Builder Nuget Nuget

To install Fss you need to install the nuget package.

# nuget
dotnet add package Fss-lib.<YourLibraryOfChoice>
// For example
dotnet add package Fss-lib.Fable

Motivation 🏁

When it comes to styling in F# you do have some good alternatives for styling:

  • Fulma, an F# wrapper on Bulma
  • TypedCssClasses, a type provider if you want to write CSS or SCSS
  • Or some kind of webpack configuration if you want to use CSS or SCSS directly.

There is however no good solution to writing CSS purely in F#, CSS-in-Fs if you will, and this library aims to do just that. If you wish to write your own CSS and you are using dotnet, Fss is the best solution for just that.

The primary goal of this project is to have an easy way to write type-safe discoverable styling with F# that supports most of the CSS spec. It was also important to me that it works independently of any other frameworks and would work anywhere you can run F# code. Therefore you can use Fss with Fable, Giraffe or any other solution you can think of.

Major goals of Fss

  • I did not want to reinvent the wheel - it should be easy to use if you already know CSS.
  • Writing CSS in F# should be discoverable, strongly typed, and the IDE to help out as much as possible.
  • It is important to support pseudo-classes and elements as well as animations, counters and combinators.
  • Have a system in place and use that to create framework specific libraries.
  • Boilerplate free, just download one nuget package and you are ready to go!

Features πŸ› 

  • IDE discoverability. Have the IDE help you write the styling as you go.
  • Static types, have statically typed CSS. Compilation will fail if you have written invalid CSS (With no guarantees it looks good, that is on you!)
  • Works independently of any HTML framework.
  • Compiles anywhere F# compiles, so it works effortlessly with Dotnet or Fable.
  • Server side rendering for free.
  • All the benefits of having your styling in your language as a first class citizen.
  • Covers a large part of the CSS spec.
  • Framework specific helper libraries.

See the Documentation for more information

Who is it for? 😎

Fss is intended for developers who want to write their own CSS using F#. If you have an existing stylesheet Fss does nothing for you, (unless you want to rewrite it), in that case you might want to check out TypedCssClasses. If you do not want to write your own CSS but you want to have some prebuilt stylesheet then something like Fulma might be what you are looking for. IF however you wish to write your own CSS in a type safe way, then Fss is what you want to use.

Contribution πŸ”¨

The best way to contribute to Fss is to use it! 😎 The more it is used the more tested it gets. If you do find any missing or bugged CSS properties, or maybe you are missing a framework library, feel free make an issue or PR. If you have some cool samples or examples feel free to to contribute to the documentation. In short, any and all contributions are very welcome.

About

License:MIT License


Languages

Language:F# 99.9%Language:HTML 0.0%Language:JavaScript 0.0%