aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/layouts/_global.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/layouts/_global.scss')
-rw-r--r--app/assets/stylesheets/layouts/_global.scss41
1 files changed, 40 insertions, 1 deletions
diff --git a/app/assets/stylesheets/layouts/_global.scss b/app/assets/stylesheets/layouts/_global.scss
index 02dbe0c..88973e3 100644
--- a/app/assets/stylesheets/layouts/_global.scss
+++ b/app/assets/stylesheets/layouts/_global.scss
@@ -4,6 +4,10 @@ body {
}
+.display-inline-block {
+ display: inline-block;
+}
+
.display-block {
display: block;
}
@@ -13,6 +17,10 @@ body {
}
+.margin-top--15 {
+ margin-top: -15px;
+}
+
.margin-top-70 {
margin-top: 70px;
}
@@ -41,6 +49,19 @@ body {
}
+.border-none {
+ border: none;
+}
+
+.outline-none {
+ outline: none;
+}
+
+
+.width-100\% {
+ width: 100%;
+}
+
.min-height-100\% {
min-height: 100%;
}
@@ -121,8 +142,11 @@ $sidebar-width: 250px;
.note-editor {
margin-left: $sidebar-width;
padding: 12px 15px;
- font: 18px/1.7 Georgia, Times, serif;
outline: none;
+
+ textarea {
+ font: 18px/1.7 Georgia, Times, serif;
+ }
}
@@ -134,6 +158,12 @@ $sidebar-width: 250px;
border-radius: 6px;
}
+button.button {
+ border: none;
+ font: 16px Avenir, Helvetica, sans-serif;
+ cursor: pointer;
+}
+
.button:hover {
background-color: #178E17;
color: #eee;
@@ -144,3 +174,12 @@ $sidebar-width: 250px;
-webkit-box-shadow:inset 0 2px 4px 0 #0D4F0D;
box-shadow:inset 0 2px 4px 0 #0D4F0D;
}
+
+
+input.form-field {
+ border: 2px solid rgb(213, 202, 202);
+ width: 260px;
+ height: 42px;
+ padding: 0 10px;
+ font-size: 16px;
+}