v8.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. @import 'vars';
  2. @import 'mixins';
  3. /*
  4. Highlights by HTML5 UP
  5. html5up.net | @n33co
  6. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  7. */
  8. /* Basic */
  9. body, html {
  10. height: 100%;
  11. }
  12. html {
  13. background: none;
  14. }
  15. /* List */
  16. ul {
  17. &.actions {
  18. li {
  19. padding: 0 0 0 ($size-element-margin * 0.5);
  20. &:first-child {
  21. padding-left: 0;
  22. }
  23. }
  24. }
  25. }
  26. /* Form */
  27. input[type="text"],
  28. input[type="password"],
  29. input[type="email"],
  30. select,
  31. textarea {
  32. border: solid 2px $color-border;
  33. position: relative;
  34. }
  35. input[type="text"],
  36. input[type="password"],
  37. input[type="email"] {
  38. line-height: $size-element-height;
  39. }
  40. input[type="checkbox"],
  41. input[type="radio"] {
  42. font-size: 3em;
  43. & + label {
  44. &:before {
  45. display: none;
  46. }
  47. }
  48. }
  49. /* Button */
  50. input[type="submit"],
  51. input[type="reset"],
  52. input[type="button"],
  53. button,
  54. .button {
  55. border: solid 2px $color-border;
  56. }
  57. /* Main BG */
  58. .main-bg {
  59. z-index: 0;
  60. }
  61. /* Main */
  62. .main {
  63. background-size: cover;
  64. .container {
  65. background: $color-bg;
  66. border-top: solid 1px $color-border;
  67. position: relative;
  68. z-index: 1;
  69. }
  70. .goto-next {
  71. @include icon;
  72. &:before {
  73. color: $color-border;
  74. content: '\f063';
  75. display: block;
  76. font-size: 2em;
  77. height: 2em;
  78. left: 0;
  79. line-height: 2em;
  80. position: absolute;
  81. text-align: center;
  82. text-indent: 0;
  83. top: 0;
  84. width: 2em;
  85. }
  86. }
  87. }
  88. /* Header */
  89. #header {
  90. -ms-behavior: url('css/ie/backgroundsize.min.htc');
  91. background-image: url('../../images/bg.jpg');
  92. background-size: cover;
  93. height: 100%;
  94. &:after {
  95. min-height: 100%;
  96. }
  97. header {
  98. position: relative;
  99. z-index: 1;
  100. }
  101. .container {
  102. background: $color-bg;
  103. z-index: 1;
  104. }
  105. }
  106. /* Footer */
  107. #footer {
  108. -ms-behavior: url('css/ie/backgroundsize.min.htc');
  109. background-image: url('../../images/bg.jpg');
  110. background-size: cover;
  111. .container {
  112. background: $color-bg;
  113. border-top: solid 1px $color-border;
  114. position: relative;
  115. z-index: 1;
  116. }
  117. }