1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
kaiwa/public/css/app/forms.styl

40 lines
966 B
Stylus
Raw Normal View History

2013-09-18 13:45:40 -04:00
// Forms and Buttons
2013-10-23 08:16:27 -04:00
input[type=text], input[type=email], input[type=search], input[type=password], textarea, .main .status
-webkit-appearance: none
roundall(3px)
padding: 0 10px
background-color: white
2013-10-23 13:57:46 -04:00
border: 1px solid $gray-lighter
font-size: $font-size-small
2013-10-23 13:57:46 -04:00
color: $gray
borderbox()
font-family: $font-family-gotham
-webkit-font-smoothing: antialiased
-webkit-appearance: none
transition: border .2s ease-in 0
-webkit-transition: border .2s ease-in 0
-moz-transition: border .2s ease-in 0
2013-10-23 08:16:27 -04:00
input[type=text], input[type=email], input[type=search], input[type=password], .main .status
height: 35px
textarea
resize: none
input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus,
.main .status:focus
outline: none
2013-10-23 13:57:46 -04:00
border: 1px solid lighten($blue, 50%)
label
display: block
margin-bottom: 5px
font-size: 13px
font-weight: $font-weight-bold
2013-10-24 17:32:20 -04:00
color: $gray