ie8.scss 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @import 'libs/vars';
  2. @import 'libs/functions';
  3. @import 'libs/mixins';
  4. @import 'libs/skel';
  5. /*
  6. Hyperspace by HTML5 UP
  7. html5up.net | @ajlkn
  8. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  9. */
  10. /* Type */
  11. body, input, select, textarea {
  12. color: _palette(fg-bold);
  13. }
  14. /* Button */
  15. input[type="submit"],
  16. input[type="reset"],
  17. input[type="button"],
  18. button,
  19. .button {
  20. position: relative;
  21. &:after {
  22. display: none;
  23. }
  24. }
  25. /* Features */
  26. .features {
  27. border: solid 1px;
  28. }
  29. /* Form */
  30. input[type="text"],
  31. input[type="password"],
  32. input[type="email"],
  33. input[type="tel"],
  34. select,
  35. textarea {
  36. background: transparent;
  37. border: solid 1px;
  38. }
  39. /* Split */
  40. .split {
  41. &.style1 {
  42. > :first-child {
  43. padding-right: 2em;
  44. width: 70%;
  45. }
  46. }
  47. }