aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Styles.elm
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/Styles.elm')
-rw-r--r--frontend/src/Styles.elm15
1 files changed, 13 insertions, 2 deletions
diff --git a/frontend/src/Styles.elm b/frontend/src/Styles.elm
index 4222024..08cd6f3 100644
--- a/frontend/src/Styles.elm
+++ b/frontend/src/Styles.elm
@@ -47,8 +47,7 @@ headerLink =
47 , padding (px 12) 47 , padding (px 12)
48 , textDecoration Css.none 48 , textDecoration Css.none
49 , hover 49 , hover
50 [ backgroundColor theme.secondary 50 [ textDecoration underline
51 , textDecoration underline
52 ] 51 ]
53 ] 52 ]
54 53
@@ -71,6 +70,17 @@ furbyButton =
71 ] 70 ]
72 71
73 72
73furbyLink : List (Attribute msg) -> List (Html msg) -> Html msg
74furbyLink =
75 styled a
76 [ color theme.fgLight
77 , textDecoration Css.none
78 , hover
79 [ backgroundColor theme.secondary
80 ]
81 ]
82
83
74furbyRadio : String -> msg -> Html msg 84furbyRadio : String -> msg -> Html msg
75furbyRadio value msg = 85furbyRadio value msg =
76 label 86 label
@@ -108,6 +118,7 @@ loginInputField =
108 , color theme.fg 118 , color theme.fg
109 , border (px 0) 119 , border (px 0)
110 , borderBottom3 (px 1) solid theme.bgLight 120 , borderBottom3 (px 1) solid theme.bgLight
121 , outline Css.none
111 , focus 122 , focus
112 [ borderBottom3 (px 2) solid theme.fg 123 [ borderBottom3 (px 2) solid theme.fg
113 ] 124 ]