-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS.elm
63 lines (48 loc) · 1.1 KB
/
CSS.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
module CSS exposing (..)
import Html.Attributes exposing (style)
import Html exposing (Attribute)
body : Html.Attribute a
body =
style
[ ( "padding", "15px" )
, ( "width", "100%" )
, ( "height", "100%" )
, ( "font-family", "monospace" )
, ( "font-size", "14px" )
, ( "float", "left" )
]
list : Html.Attribute a
list =
style
[ ( "list-style-type", "none" )
, ( "padding", "10px 5px" )
, ( "border-radius", "4px" )
, ( "background-color", "#68C4F2" )
]
button : Html.Attribute a
button =
style
[ ( "border", "1px solid silver" )
, ( "border-radius", "5px" )
, ( "padding", "2px 5px" )
]
column : Html.Attribute a
column =
style
[ ( "display", "inline-block" )
, ( "width", "50%" )
]
content : Html.Attribute a
content =
style
[]
header : Html.Attribute a
header =
style
[]
graphStyle : Html.Attribute a
graphStyle =
style
[ ( "margin", "40px" )
, ( "font-family", "Helvetica, Arial, san-serif" )
]