Built files from Bizgaze WebServer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

tour.min.css 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .ttour-overlay {
  2. position: absolute;
  3. box-shadow: 0 0 0 99999px rgba(0,0,0,.8),inset 0 0 2px 0 #000
  4. }
  5. .ttour-wrapper {
  6. position: relative;
  7. height: 100%;
  8. width: 100%
  9. }
  10. 150
  11. .ttour-shadow {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. bottom: 0;
  17. height: 100vh;
  18. width: 100vw
  19. }
  20. .ttour-tip {
  21. position: absolute;
  22. background-color: #fff;
  23. border-radius: 2px;
  24. font-family: sans-serif;
  25. min-width: 250px;
  26. max-width: 375px;
  27. box-shadow: 0 0 5px 0 rgba(0,0,0,.8);
  28. z-index:10000;
  29. }
  30. .ttour-tip.top {
  31. bottom: calc(100% + 10px);
  32. left: 8px;
  33. }
  34. .ttour-tip.right {
  35. top: -5px;
  36. left: calc(100% + 10px);
  37. }
  38. .ttour-tip.bottom {
  39. top: calc(100% + 10px);
  40. left: 0
  41. }
  42. .ttour-tip.left {
  43. right: calc(100% + 10px);
  44. top: -4px;
  45. }
  46. .ttour-header {
  47. padding: 15px 15px 10px 15px
  48. }
  49. .ttour-header h1 {
  50. margin: 0;
  51. font-size: 1.3em
  52. }
  53. .ttour-body {
  54. font-weight: 300;
  55. padding: 10px 15px
  56. }
  57. .ttour-footer {
  58. padding: 10px 15px;
  59. overflow: auto;
  60. position: relative
  61. }
  62. .ttour-bullets {
  63. position: absolute;
  64. top: 50%;
  65. left: 20px;
  66. transform: translateY(-50%)
  67. }
  68. .ttour-bullet {
  69. /*display: inline-block;*/
  70. border: 3px solid #ccc;
  71. border-radius: 50%;
  72. margin: 2px;
  73. display: none;
  74. }
  75. .ttour-bullet.active {
  76. border-color: #333
  77. }
  78. .ttour-footer button {
  79. cursor: pointer;
  80. float: right;
  81. border: none;
  82. padding: 8px 16px;
  83. font-size: 14px;
  84. transition: .3s ease-out
  85. }
  86. .ttour-footer button.prev {
  87. background-color: transparent;
  88. margin-right: 5px
  89. }
  90. .ttour-footer button.prev:hover {
  91. background-color: #efefef;
  92. }
  93. .ttour-footer button.next {
  94. color: #fff;
  95. background-color: #1e88e5;
  96. border-radius: 2px;
  97. box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)
  98. }
  99. .ttour-footer button.next:hover {
  100. background-color: #42a5f5;
  101. }
  102. .ttour-arrow {
  103. position: absolute;
  104. width: 14px;
  105. height: 14px;
  106. transform-origin: 0 0;
  107. background-color: #fff;
  108. box-shadow: -2px 2px 2px 0 rgba(0,0,0,.3)
  109. }
  110. .ttour-tip.right .ttour-arrow {
  111. top: 15px;
  112. left: 0;
  113. transform: rotate(45deg)
  114. }
  115. .ttour-tip.bottom .ttour-arrow {
  116. top: 0;
  117. left: 35px;
  118. transform: rotate(135deg)
  119. }
  120. .ttour-tip.left .ttour-arrow {
  121. right: -14px;
  122. top: 30px;
  123. transform: rotate(-136deg)
  124. }
  125. .ttour-tip.top .ttour-arrow {
  126. bottom: -14px;
  127. left: 10px;
  128. transform: rotate(-45deg)
  129. }
  130. .ttour-footer button.next:focus, .ttour-footer button.prev:focus {
  131. outline: 0px;
  132. }