ie9.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. h1 {
  12. &.major {
  13. &:after {
  14. background: _palette(accent3);
  15. }
  16. }
  17. }
  18. /* Wrapper */
  19. .wrapper {
  20. &.fullscreen {
  21. min-height: 0;
  22. padding-bottom: 6em;
  23. padding-top: 6em;
  24. body.is-ie & {
  25. height: auto;
  26. }
  27. }
  28. }
  29. /* Spotlights */
  30. .spotlights {
  31. > section {
  32. padding-left: 20em;
  33. position: relative;
  34. > .image {
  35. height: 100%;
  36. left: 0;
  37. position: absolute;
  38. top: 0;
  39. width: 20em;
  40. }
  41. > .content {
  42. width: 100%;
  43. }
  44. }
  45. }
  46. /* Features */
  47. .features {
  48. &:after {
  49. clear: both;
  50. content: '';
  51. display: block;
  52. }
  53. section {
  54. float: left;
  55. }
  56. }
  57. /* Split */
  58. .split {
  59. &:after {
  60. clear: both;
  61. content: '';
  62. display: block;
  63. }
  64. > * {
  65. float: left;
  66. }
  67. }
  68. /* Sidebar */
  69. #sidebar {
  70. nav {
  71. a {
  72. &:after {
  73. background-color: _palette(accent3);
  74. }
  75. }
  76. }
  77. }
  78. /* Header */
  79. #header {
  80. &:after {
  81. clear: both;
  82. content: '';
  83. display: block;
  84. }
  85. > .title {
  86. float: left;
  87. }
  88. > nav {
  89. float: right;
  90. }
  91. }