diff options
| author | Teddy Wing | 2016-02-21 22:39:37 +0100 | 
|---|---|---|
| committer | Teddy Wing | 2016-02-21 22:39:37 +0100 | 
| commit | a683dae0e5545fd9c579fe92bf5e647ad4d5d8d7 (patch) | |
| tree | 9de2180526b25b7142290623d5ff54eeb454cbd6 /app | |
| parent | 842176e9079794e71942f9398c226d1ea0634c0d (diff) | |
| download | Notes-angular-demo-a683dae0e5545fd9c579fe92bf5e647ad4d5d8d7.tar.bz2 | |
Use latest master styles
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/stylesheets/layouts/_global.scss | 32 | 
1 files changed, 29 insertions, 3 deletions
| diff --git a/app/assets/stylesheets/layouts/_global.scss b/app/assets/stylesheets/layouts/_global.scss index 2873b13..7e92b12 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,10 +17,18 @@ body {  } +.margin-top--15 { +	margin-top: -15px; +} +  .margin-top-70 {  	margin-top: 70px;  } +.margin-left-8 { +	margin-left: 8px; +} +  .padding-13 {  	padding: 13px; @@ -41,7 +53,6 @@ body {  	border: none;  } -  .outline-none {  	outline: none;  } @@ -62,10 +73,10 @@ body {  	height: 30px;  	padding: 20px; -	.right-button { +	.right-section {  		position: absolute;  		right: 40px; -		top: -33px; +		top: -22px;  	}  } @@ -148,6 +159,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; @@ -158,3 +175,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; +} | 
