File tree 3 files changed +56
-35
lines changed
3 files changed +56
-35
lines changed Original file line number Diff line number Diff line change @@ -22,40 +22,60 @@ Built from the Tailwind palette.
22
22
23
23
``` elm
24
24
view =
25
- div
26
- [ css
27
- [ backgroundColor indigo300
28
- , hover [ backgroundColor indigo400 ]
29
- , color indigo900
30
- ]
31
- ]
32
- []
25
+ div
26
+ [ css
27
+ [ backgroundColor indigo300
28
+ , hover [ backgroundColor indigo400 ]
29
+ , color indigo900
30
+ ]
31
+ ]
32
+ []
33
33
```
34
34
35
35
[ Browse all colors ➝] ( https://cedricsoulas.com/elm/css/systems#colors )
36
36
![ Color system] ( https://github.com/cedricss/elm-css-systems/raw/master/img/colors.png )
37
37
38
38
## Spacing and sizing systems
39
39
40
- ### Spacing
40
+ ``` elm
41
+ element =
42
+ div
43
+ [ css
44
+ [ marginTop space8
45
+ , padding space2
46
+ , width space32
47
+ ]
48
+ ]
49
+ ```
41
50
42
51
``` elm
43
52
view =
44
- div
45
- [ css
46
- [ height ( fluid 2 3 )
47
- , width ( fluid 1 2 )
48
- , marginY space4
49
- ]
50
- ]
51
- [ ]
53
+ div
54
+ [ css
55
+ [ displayFlex
56
+ , flexWrap wrap
57
+ , maxHeight size3XL
58
+ , width ( fluid 2 3 )
59
+ ]
60
+ ]
52
61
```
53
62
54
63
[ Browse spacing ➝] ( https://cedricsoulas.com/elm/css/systems#spacing )
55
64
![ Spacing systems] ( https://github.com/cedricss/elm-css-systems/raw/master/img/spacing.png )
56
65
57
66
- [ Learn more about ` fluid ` ] ( https://package.elm-lang.org/packages/cedricss/elm-css-systems/latest/Css-Systems-Spacing#fluid )
58
67
68
+ ## Font size
69
+
70
+ ``` elm
71
+ view =
72
+ span
73
+ [ css [ textLG ] ]
74
+ [ text " hello" ]
75
+ ```
76
+
77
+ [ Browse font size system ➝] ( https://cedricsoulas.com/elm/css/systems#text )
78
+
59
79
### Max height and max width
60
80
61
81
[ Browse all ➝] ( https://package.elm-lang.org/packages/cedricss/elm-css-systems/latest/Css-Systems-Spacing )
Original file line number Diff line number Diff line change 1
1
{
2
- "type" : " package" ,
3
- "name" : " cedricss/elm-css-systems" ,
4
- "summary" : " Design systems based on elm-css, inspired by Tailwind." ,
5
- "license" : " MIT" ,
6
- "version" : " 3.0.0" ,
7
- "exposed-modules" : [
8
- " Css.Systems.Colors" ,
9
- " Css.Systems.Spacing" ,
10
- " Css.Systems.Utilities"
11
- ],
12
- "elm-version" : " 0.19.0 <= v < 0.20.0" ,
13
- "dependencies" : {
14
- "elm/core" : " 1.0.0 <= v < 2.0.0" ,
15
- "rtfeldman/elm-css" : " 16.0.1 <= v < 17.0.0"
16
- },
17
- "test-dependencies" : {}
18
- }
2
+ "type" : " package" ,
3
+ "name" : " cedricss/elm-css-systems" ,
4
+ "summary" : " Design systems based on elm-css, inspired by Tailwind." ,
5
+ "license" : " MIT" ,
6
+ "version" : " 3.1.0" ,
7
+ "exposed-modules" : [
8
+ " Css.Systems.Colors" ,
9
+ " Css.Systems.Spacing" ,
10
+ " Css.Systems.Utilities" ,
11
+ " Css.Systems.Text"
12
+ ],
13
+ "elm-version" : " 0.19.0 <= v < 0.20.0" ,
14
+ "dependencies" : {
15
+ "elm/core" : " 1.0.0 <= v < 2.0.0" ,
16
+ "rtfeldman/elm-css" : " 16.0.1 <= v < 17.0.0"
17
+ },
18
+ "test-dependencies" : {}
19
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " elm-css-systems" ,
3
- "version" : " 2.0.2 " ,
3
+ "version" : " 3.1.0 " ,
4
4
"description" : " Design systems based on elm-css, inspired by Tailwind." ,
5
5
"homepage" : " https://cedricsoulas.com/elm/css/systems" ,
6
6
"author" : " Cédric Soulas" ,
You can’t perform that action at this time.
0 commit comments