aboutsummaryrefslogtreecommitdiff
path: root/app/assets/sass/_forms.scss
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-01-03 17:17:48 -0800
commit5310ac7d8eb1838a6297117bc7f9fca70291f46a (patch)
tree28f54b184cb85f04e6d6720dd03258f3728fedde /app/assets/sass/_forms.scss
initial commit
Diffstat (limited to 'app/assets/sass/_forms.scss')
-rw-r--r--app/assets/sass/_forms.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/assets/sass/_forms.scss b/app/assets/sass/_forms.scss
new file mode 100644
index 0000000..4ab4dfe
--- /dev/null
+++ b/app/assets/sass/_forms.scss
@@ -0,0 +1,33 @@
+@import "compass/css3/user-interface";
+
+.input-box {
+ @include input-placeholder {
+ color: $gray;
+ font-size: round($font-size-base * 1.4);
+ }
+
+ &:focus {
+ box-shadow: 0 0 5px rgba(81, 203, 238, 1);
+ }
+
+ &-main {
+ font-size: round($font-size-base * 1.4);
+ width: 700px;
+ border: 0;
+ border-bottom: 2px solid $blue;
+ padding: $padding-lg;
+ margin-top: $padding-lg;
+ margin-bottom: $padding-lg;
+ }
+
+ &-lg {
+ width: 100%;
+ height: 280px;
+ margin-bottom: $padding-base;
+ margin-bottom: $padding-lg;
+ border-radius: $border-radius-base;
+ border: 1px solid $line-color;
+ padding: $padding-lg;
+ }
+
+}