jquery.fullPage.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /**
  2. * fullPage 1.4.5
  3. * https://github.com/alvarotrigo/fullPage.js
  4. * MIT licensed
  5. *
  6. * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
  7. */
  8. html, body {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. #superContainer {
  13. height: 100%;
  14. position: relative;
  15. }
  16. .section {
  17. position: relative;
  18. -webkit-box-sizing: border-box;
  19. -moz-box-sizing: border-box;
  20. box-sizing: border-box;
  21. }
  22. .slide {
  23. float: left;
  24. }
  25. .slide, .slidesContainer {
  26. height: 100%;
  27. display: block;
  28. }
  29. .slides {
  30. height: 100%;
  31. overflow: hidden;
  32. position: relative;
  33. -webkit-transition: all 0.3s ease-out;
  34. -moz-transition: all 0.3s ease-out;
  35. -o-transition: all 0.3s ease-out;
  36. transition: all 0.3s ease-out;
  37. }
  38. .section.table, .slide.table {
  39. display: table;
  40. width: 100%;
  41. }
  42. .tableCell {
  43. display: table-cell;
  44. vertical-align: middle;
  45. width: 100%;
  46. height: 100%;
  47. }
  48. .slidesContainer {
  49. float: left;
  50. position: relative;
  51. }
  52. .controlArrow {
  53. position: absolute;
  54. top: 50%;
  55. cursor: pointer;
  56. width: 0;
  57. height: 0;
  58. border-style: solid;
  59. margin-top: -38px;
  60. }
  61. .controlArrow.prev {
  62. left: 15px;
  63. width: 0;
  64. border-width: 38.5px 34px 38.5px 0;
  65. border-color: transparent #fff transparent transparent;
  66. }
  67. .controlArrow.next {
  68. right: 15px;
  69. border-width: 38.5px 0 38.5px 34px;
  70. border-color: transparent transparent transparent #fff;
  71. }
  72. .scrollable {
  73. overflow: scroll;
  74. }
  75. .easing {
  76. -webkit-transition: all 0.7s ease-out;
  77. -moz-transition: all 0.7s ease-out;
  78. -o-transition: all 0.7s ease-out;
  79. transition: all 0.7s ease-out;
  80. }
  81. #fullPage-nav {
  82. position: fixed;
  83. z-index: 100;
  84. margin-top: -32px;
  85. top: 50%;
  86. opacity: 1;
  87. }
  88. #fullPage-nav.right {
  89. right: 17px;
  90. }
  91. #fullPage-nav.left {
  92. left: 17px;
  93. }
  94. .fullPage-slidesNav {
  95. position: absolute;
  96. z-index: 4;
  97. left: 50%;
  98. opacity: 1;
  99. }
  100. .fullPage-slidesNav.bottom {
  101. bottom: 17px;
  102. }
  103. .fullPage-slidesNav.top {
  104. top: 17px;
  105. }
  106. #fullPage-nav ul,
  107. .fullPage-slidesNav ul {
  108. margin: 0;
  109. padding: 0;
  110. }
  111. #fullPage-nav li,
  112. .fullPage-slidesNav li {
  113. display: block;
  114. width: 14px;
  115. height: 13px;
  116. margin: 7px;
  117. position:relative;
  118. }
  119. .fullPage-slidesNav li {
  120. display: inline-block;
  121. }
  122. #fullPage-nav li a,
  123. .fullPage-slidesNav li a {
  124. display: block;
  125. position: relative;
  126. z-index: 1;
  127. width: 100%;
  128. height: 100%;
  129. cursor: pointer;
  130. text-decoration: none;
  131. }
  132. #fullPage-nav li .active span,
  133. .fullPage-slidesNav .active span {
  134. background: #333;
  135. }
  136. #fullPage-nav span,
  137. .fullPage-slidesNav span {
  138. top: 2px;
  139. left: 2px;
  140. width: 8px;
  141. height: 8px;
  142. border: 1px solid #000;
  143. background: rgba(0, 0, 0, 0);
  144. -webkit-border-radius: 50%;
  145. -moz-border-radius: 50%;
  146. border-radius: 50%;
  147. position: absolute;
  148. z-index: 1;
  149. }
  150. .fullPage-tooltip {
  151. position: absolute;
  152. color: #fff;
  153. font-size: 14px;
  154. font-family: arial, helvetica, sans-serif;
  155. top: -2px;
  156. }
  157. .fullPage-tooltip.right {
  158. right: 20px;
  159. }
  160. .fullPage-tooltip.left {
  161. left: 20px;
  162. }