about summary refs log tree commit diff
path: root/users/grfn/bbbg/src/bbbg/styles.clj
diff options
context:
space:
mode:
Diffstat (limited to 'users/grfn/bbbg/src/bbbg/styles.clj')
-rw-r--r--users/grfn/bbbg/src/bbbg/styles.clj22
1 files changed, 22 insertions, 0 deletions
diff --git a/users/grfn/bbbg/src/bbbg/styles.clj b/users/grfn/bbbg/src/bbbg/styles.clj
index fd341a62dd5b..61e1132b4068 100644
--- a/users/grfn/bbbg/src/bbbg/styles.clj
+++ b/users/grfn/bbbg/src/bbbg/styles.clj
@@ -211,6 +211,27 @@
     [(& active)
      {:background-color (color/lighten blue 30)}]]])
 
+(defstyles signup-page
+  [:.signup-page
+   {:margin "1rem"}
+   (not-mobile
+    {:width content-width
+     :margin "1rem auto"})]
+
+  [:#signup-form
+   {:display :flex
+    :flex-direction :row
+    :width "100%"}
+
+   [:*
+    {:flex 1}]
+
+   [:*+*
+    {:margin-left "1rem"}]
+
+   [(attr= "type" "submit")
+    {:flex 0}]])
+
 (defstyles styles
   forms
   tables
@@ -219,6 +240,7 @@
   search-form
   flash
   home-page
+  signup-page
 
   [:body
    {:color black}]