-
Notifications
You must be signed in to change notification settings - Fork 1
/
Style.elm
54 lines (43 loc) · 998 Bytes
/
Style.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
module Style where
containerStyle = [
("position", "relative")
,("width", "450px")
,("height", "450px")
,("border", "1px solid black")
]
maskStyle = [
("position", "absolute")
,("top", "0")
,("left", "0")
,("opacity", "0.7")
,("background", "#FFF")
,("width", "450px")
,("height", "450px")
,("z-index", "1000")
]
mainWrapperStyle = [
("justify-content", "center")
,("display", "flex")
,("position", "relative")
,("width", "100%")
]
wrapperStyle = [
("flex-direction", "column")
,("justify-content", "center")
,("display", "flex")
,("position", "relative")
,("align-items", "center")
,("width", "450px")
,("height", "100%")
]
gameInfoStyle = [
("display", "flex")
, ("justify-content", "space-between")
, ("margin-bottom", "10px")
]
restartBtnStyle = [
("font-size", "15px")
,("font-weight", "bold")
,("height", "40px")
,("cursor", "pointer")
]