1
0
mirror of https://github.com/danbee/julep synced 2025-03-04 08:59:10 +00:00

Add some base input styles.

This commit is contained in:
Dan Barber 2013-02-26 16:46:45 +00:00
parent e6a1875d7e
commit faf9a2bcfb
2 changed files with 21 additions and 0 deletions

View File

@ -5,4 +5,5 @@
@import "includes/header";
@import "includes/tabbar";
@import "includes/list";
@import "includes/inputs";
@import "includes/buttons";

20
includes/_inputs.scss Normal file
View File

@ -0,0 +1,20 @@
// define some global input styles.
.input {
width: 100%;
font-family: "Helvetica Neue" sans-serif;
border-radius: 0.3em;
@include box-shadow(inset 0 2px 4px rgba(0, 0, 0, 0.2));
padding: 0.4em;
background: white;
color: #333;
border: {
style: solid;
width: 1px;
color: #999 #aaa #ccc;
}
}
// extend global style.
@mixin input {
@extend .input;
}