summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/base/base.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/base/base.scss')
-rw-r--r--app/assets/stylesheets/base/base.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/assets/stylesheets/base/base.scss b/app/assets/stylesheets/base/base.scss
new file mode 100644
index 00000000000..1833d02095e
--- /dev/null
+++ b/app/assets/stylesheets/base/base.scss
@@ -0,0 +1,21 @@
+html, body {
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ margin: 20px;
+ box-sizing: border-box;
+ color: $grey-900;
+}
+
+*:focus {
+ outline: none;
+}
+
+*,
+*::before,
+*::after {
+ box-sizing: inherit;
+}
+
+label {
+ display: inline-block;
+ margin-bottom: 5px;
+} \ No newline at end of file