-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExample.elm
259 lines (238 loc) · 6.29 KB
/
Example.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
module Main exposing (main)
import Browser
import Css exposing (..)
import Html.Grid as Grid
import Html.Styled as Html
exposing
( Attribute
, Html
, p
)
import Html.Styled.Attributes exposing (css)
main =
Grid.box
[]
[ Grid.row
[]
[ Grid.col
[]
[ box
green
"row with two columns of even width"
]
, Grid.col
[]
[ box
yellow
"row with two columns of even width"
]
]
, Grid.row
[ height (px 50) ]
[ Grid.col
[]
[ box
gray
"row with 50px height and one full-width column"
]
]
, Grid.row
[]
[ Grid.col
[]
[ box
blue
"A grid inside a grid ->"
]
, Grid.col
[]
[ Grid.box
[ Grid.exactWidthcol (pct 100) ]
[ Grid.row
[]
[ Grid.col
[]
[ box
green
"upper left"
]
, Grid.col
[]
[ box
blue
"upper right"
]
]
, Grid.row
[]
[ Grid.col
[]
[ box
gray
"center left"
]
, Grid.col
[]
[ box
green
"center right"
]
]
, Grid.row
[]
[ Grid.col
[]
[ box
yellow
"lower left"
]
, Grid.col
[]
[ box
gray
"lower right"
]
]
]
]
]
, Grid.row
[]
[ Grid.col
[ height (px 50) ]
[ box
yellow
"rows with columns of differing heights are as tall as their tallest column"
]
, Grid.col
[ height (px 25) ]
[ box
green
"this column is explicitly 25px tall"
]
, Grid.col
[]
[ box
blue
"columns without an explicit height grow to fill the available vertical space"
]
]
, Grid.row
[]
[ Grid.col
[ margin (px 10) ]
[ box
yellow
"columns with varying margins are vertically centered"
]
, Grid.col
[ margin (px 5) ]
[ box
gray
"columns with varying margins are vertically centered"
]
]
, Grid.row
[ height (px 75) ]
[ Grid.col
[]
[ box
green
"columns with an explicit width stay that width, while the others grow to fill availabile horizontal space"
]
, Grid.col
[ Grid.exactWidthcol (px 200)
]
[ box
blue
"200px width"
]
, Grid.col
[]
[ box
green
"columns with an explicit width stay that width, while the others grow to fill availabile horizontal space"
]
, Grid.col
[ Grid.exactWidthcol (px 100)
]
[ box
blue
"100px width"
]
]
, Grid.row
[ height (px 75) ]
[ Grid.col
[ Grid.exactWidthcol (pct 66.67)
]
[ box
yellow
"columns can be given relative widths like 66.67%"
]
, Grid.col
[ Grid.exactWidthcol (pct 33.33)
]
[ box
gray
" and 33.33%"
]
]
]
|> Html.toUnstyled
green : ElmColor
green =
Green
yellow : ElmColor
yellow =
Yellow
gray : ElmColor
gray =
Gray
blue : ElmColor
blue =
Blue
type ElmColor
= Green
| Yellow
| Gray
| Blue
elmColorToHex : ElmColor -> String
elmColorToHex color =
case color of
Green ->
"#7fd13b"
Yellow ->
"#f0ad00"
Gray ->
"#5a6378"
Blue ->
"#60b5cc"
box : ElmColor -> String -> Html msg
box boxColor comment =
let
fontColor : Style
fontColor =
if boxColor == Gray then
color <| hex "#ffffff"
else
color <| hex "#000000"
in
Html.div
[ css
[ backgroundColor (hex <| elmColorToHex boxColor)
, height (pct 100)
, width (pct 100)
, displayFlex
, justifyContent center
]
]
[ p
[ css
[ display inline
, margin zero
, fontColor
]
]
[ Html.text comment ]
]