James Peret's blog. Built with Jekyll and the Mikey theme.

_form.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Form
  3. // --------------------------------------------------
  4. .textInput {
  5. border: 1px solid rgba(0,0,0,0.15);
  6. padding: 0 15px;
  7. height: 35px;
  8. width: 100%;
  9. font-size: 14px;
  10. outline: none;
  11. background: $white;
  12. appearance: none;
  13. -webkit-tap-highlight-color: rgba(0,0,0,0);
  14. border-radius: 4px;
  15. font-family: $title-secondary-font;
  16. font-weight: 300;
  17. }
  18. .textInput--large {
  19. height: 45px;
  20. font-size: 16px;
  21. }
  22. .button {
  23. display: inline-block;
  24. text-align: center;
  25. white-space: nowrap;
  26. vertical-align: middle;
  27. cursor: pointer;
  28. -webkit-user-select: none;
  29. -moz-user-select: none;
  30. -ms-user-select: none;
  31. user-select: none;
  32. outline: none;
  33. background: transparent;
  34. border-radius: 99px;
  35. font-family: $title-secondary-font;
  36. letter-spacing: .02em;
  37. padding: 10px 40px 9px 40px;
  38. margin-top: $leading;
  39. border: 2px solid rgba($gray-light, .8);
  40. color: $gray-light;
  41. text-decoration: none;
  42. text-transform: uppercase;
  43. &:hover {
  44. border-color: $gray-light;
  45. }
  46. @media (max-width: $screen-xs-max) {
  47. font-size: 14px;
  48. }
  49. }
  50. .button--primary {
  51. border: 2px solid rgba($black, .8);
  52. color: $black;
  53. &:hover {
  54. border-color: $black;
  55. }
  56. }
  57. .button--large {
  58. }