mirror of
https://github.com/danbee/julep
synced 2025-03-04 08:59:10 +00:00
21 lines
380 B
SCSS
21 lines
380 B
SCSS
// 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;
|
|
}
|