diff options
author | Teddy Wing | 2015-01-24 10:41:07 -0500 |
---|---|---|
committer | Teddy Wing | 2015-01-24 10:41:07 -0500 |
commit | 154fb936beb820d5e8db616899a6a95bc8d1c080 (patch) | |
tree | c45eab082b4e1ef37320a6608f6850c9871e6c1c /app/assets/stylesheets | |
parent | 384167b6122e44971aac7f98a0131f8cad1ef47f (diff) | |
download | Notes-angular-demo-154fb936beb820d5e8db616899a6a95bc8d1c080.tar.bz2 |
main view: Create & update work
Add hooks to create new notes and save existing notes from the
interface.
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components/type.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/layouts/_global.scss | 41 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app/assets/stylesheets/components/type.scss b/app/assets/stylesheets/components/type.scss index 7e8fc05..d4e4ecf 100644 --- a/app/assets/stylesheets/components/type.scss +++ b/app/assets/stylesheets/components/type.scss @@ -3,6 +3,10 @@ } +.font-size-16 { + font-size: 16px; +} + .font-size-28 { font-size: 28px; } 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; +} |