summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/application.css')
-rw-r--r--assets/application.css40
1 files changed, 40 insertions, 0 deletions
diff --git a/assets/application.css b/assets/application.css
new file mode 100644
index 0000000..204e3c8
--- /dev/null
+++ b/assets/application.css
@@ -0,0 +1,40 @@
+.typeahead-field input,
+.typeahead-select {
+ display:block;
+ width:100%;
+ font-size:13px;
+ color:#555;
+ background:0 0;
+ border-radius:2px 0 0 2px;
+ -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
+ box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
+ -webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
+ -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
+ transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
+}
+.typeahead-field input {
+ -webkit-appearance:none;
+ background:0 0
+}
+.typeahead-field input:last-child,
+.typeahead-hint {
+ background:#fff
+}
+
+.separator {
+ display: flex;
+ align-items: center;
+ text-align: center;
+ color: grey;
+}
+.separator::before, .separator::after {
+ content: '';
+ flex: 1;
+ border-bottom: 1px solid lightgrey;
+}
+.separator::before {
+ margin-right: .25em;
+}
+.separator::after {
+ margin-left: .25em;
+}