1
0
mirror of https://github.com/danbee/julep synced 2025-03-04 08:59:10 +00:00
julep/includes/_inputs.scss
2013-02-26 18:06:38 +00:00

22 lines
398 B
SCSS

// define some global input styles.
.input {
width: 100%;
font-family: "Helvetica Neue" sans-serif;
font-size: 1em;
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;
}