joyride-2.0.3.css

/* Artfully masterminded by ZURB */
#joyRideTipContent { display: none; }

/* Default styles for the container */
.joyride-tip-guide {
  position: absolute;
  background: #000;
  background: rgba(0,0,0,0.8);
  display: none;
  color: #fff;
  width: 300px;
  z-index: 101;
  top: 0; /* keeps the page from scrolling when calculating position */
  left: 0;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", Helvetica, Arial, Lucida, sans-serif;
  font-weight: normal;
     -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.joyride-content-wrapper {
  padding: 10px 10px 15px 15px;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .joyride-tip-guide {
    width: 95% !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    left: 2.5% !important;
  }
  .joyride-tip-guide-wrapper {
    width: 100%;
  }
}


/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
.joyride-tip-guide span.joyride-nub {
  display: block;
  position: absolute;
  left: 22px;
  width: 0;
  height: 0;
  border: solid 14px;
  border: solid 14px;
}

.joyride-tip-guide span.joyride-nub.top {
  /*
  IE7/IE8 Don't support rgba so we set the fallback
  border color here. However, IE7/IE8 are also buggy
  in that the fallback color doesn't work for
  border-bottom-color so here we set the border-color
  and override the top,left,right colors below.
  */
  border-color: #000;
  border-color: rgba(0,0,0,0.8);
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  top: -28px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.bottom {
  /*
  IE7/IE8 Don't support rgba so we set the fallback
  border color here. However, IE7/IE8 are also buggy
  in that the fallback color doesn't work for
  border-top-color so here we set the border-color
  and override the bottom,left,right colors below.
  */
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  bottom: -28px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.right {
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  top: 22px;
  bottom: none;
  left: auto;
  right: -28px;
}

.joyride-tip-guide span.joyride-nub.left {
  border-color: #000;
  border-color: rgba(0,0,0,0.8) !important;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  top: 22px;
  left: -28px;
  right: auto;
  bottom: none;
}

/* Typography */
.joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6 {
  line-height: 1.25;
  margin: 0;
  font-weight: bold;
  color: #fff;
}
.joyride-tip-guide h1 { font-size: 30px; }
.joyride-tip-guide h2 { font-size: 26px; }
.joyride-tip-guide h3 { font-size: 22px; }
.joyride-tip-guide h4 { font-size: 18px; }
.joyride-tip-guide h5 { font-size: 16px; }
.joyride-tip-guide h6 { font-size: 14px; }
.joyride-tip-guide p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 18px;
}
.joyride-tip-guide a {
  color: rgb(255,255,255);
  text-decoration: none;
  border-bottom: dotted 1px rgba(255,255,255,0.6);
}
.joyride-tip-guide a:hover {
  color: rgba(255,255,255,0.8);
  border-bottom: none;
}

/* Button Style */
.joyride-tip-guide .joyride-next-tip {
  width: auto;
  padding: 6px 18px 4px;
  font-size: 13px;
  text-decoration: none;
  color: rgb(255,255,255);
  border: solid 1px rgb(0,60,180);
  background: rgb(0,99,255);
  background: -moz-linear-gradient(top, rgb(0,99,255) 0%, rgb(0,85,214) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(0,99,255)), color-stop(100%,rgb(0,85,214)));
  background: -webkit-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -o-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -ms-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0063ff', endColorstr='#0055d6',GradientType=0 );
  background: linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
     -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
          box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
}

.joyride-next-tip:hover {
  color: rgb(255,255,255) !important;
  border: solid 1px rgb(0,60,180) !important;
  background: rgb(43,128,255);
  background: -moz-linear-gradient(top, rgb(43,128,255) 0%, rgb(29,102,211) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(43,128,255)), color-stop(100%,rgb(29,102,211)));
  background: -webkit-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -o-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -ms-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b80ff', endColorstr='#1d66d3',GradientType=0 );
  background: linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
}

.joyride-timer-indicator-wrap {
  width: 50px;
  height: 3px;
  border: solid 1px rgba(255,255,255,0.1);
  position: absolute;
  right: 17px;
  bottom: 16px;
}
.joyride-timer-indicator {
  display: block;
  width: 0;
  height: inherit;
  background: rgba(255,255,255,0.25);
}

.joyride-close-tip {
  position: absolute;
  right: 10px;
  top: 10px;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none;
  font-family: Verdana, sans-serif;
  font-size: 10px;
  font-weight: bold;
  border-bottom: none !important;
}

.joyride-close-tip:hover {
  color: rgba(255,255,255,0.9) !important;
}

.joyride-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgb(0,0,0);
  background: transparent;
  background: rgba(0,0,0, 0.5);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
  cursor: pointer;
}

File

drupal/core/modules/tour/css/joyride-2.0.3.css
View source
  1. /* Artfully masterminded by ZURB */
  2. #joyRideTipContent { display: none; }
  3. /* Default styles for the container */
  4. .joyride-tip-guide {
  5. position: absolute;
  6. background: #000;
  7. background: rgba(0,0,0,0.8);
  8. display: none;
  9. color: #fff;
  10. width: 300px;
  11. z-index: 101;
  12. top: 0; /* keeps the page from scrolling when calculating position */
  13. left: 0;
  14. font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", Helvetica, Arial, Lucida, sans-serif;
  15. font-weight: normal;
  16. -moz-border-radius: 4px;
  17. -webkit-border-radius: 4px;
  18. border-radius: 4px;
  19. }
  20. .joyride-content-wrapper {
  21. padding: 10px 10px 15px 15px;
  22. }
  23. /* Mobile */
  24. @media only screen and (max-width: 767px) {
  25. .joyride-tip-guide {
  26. width: 95% !important;
  27. -moz-border-radius: 0;
  28. -webkit-border-radius: 0;
  29. border-radius: 0;
  30. left: 2.5% !important;
  31. }
  32. .joyride-tip-guide-wrapper {
  33. width: 100%;
  34. }
  35. }
  36. /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
  37. .joyride-tip-guide span.joyride-nub {
  38. display: block;
  39. position: absolute;
  40. left: 22px;
  41. width: 0;
  42. height: 0;
  43. border: solid 14px;
  44. border: solid 14px;
  45. }
  46. .joyride-tip-guide span.joyride-nub.top {
  47. /*
  48. IE7/IE8 Don't support rgba so we set the fallback
  49. border color here. However, IE7/IE8 are also buggy
  50. in that the fallback color doesn't work for
  51. border-bottom-color so here we set the border-color
  52. and override the top,left,right colors below.
  53. */
  54. border-color: #000;
  55. border-color: rgba(0,0,0,0.8);
  56. border-top-color: transparent !important;
  57. border-left-color: transparent !important;
  58. border-right-color: transparent !important;
  59. top: -28px;
  60. bottom: none;
  61. }
  62. .joyride-tip-guide span.joyride-nub.bottom {
  63. /*
  64. IE7/IE8 Don't support rgba so we set the fallback
  65. border color here. However, IE7/IE8 are also buggy
  66. in that the fallback color doesn't work for
  67. border-top-color so here we set the border-color
  68. and override the bottom,left,right colors below.
  69. */
  70. border-color: #000;
  71. border-color: rgba(0,0,0,0.8) !important;
  72. border-bottom-color: transparent !important;
  73. border-left-color: transparent !important;
  74. border-right-color: transparent !important;
  75. bottom: -28px;
  76. bottom: none;
  77. }
  78. .joyride-tip-guide span.joyride-nub.right {
  79. border-color: #000;
  80. border-color: rgba(0,0,0,0.8) !important;
  81. border-top-color: transparent !important;
  82. border-right-color: transparent !important;
  83. border-bottom-color: transparent !important;
  84. top: 22px;
  85. bottom: none;
  86. left: auto;
  87. right: -28px;
  88. }
  89. .joyride-tip-guide span.joyride-nub.left {
  90. border-color: #000;
  91. border-color: rgba(0,0,0,0.8) !important;
  92. border-top-color: transparent !important;
  93. border-left-color: transparent !important;
  94. border-bottom-color: transparent !important;
  95. top: 22px;
  96. left: -28px;
  97. right: auto;
  98. bottom: none;
  99. }
  100. /* Typography */
  101. .joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6 {
  102. line-height: 1.25;
  103. margin: 0;
  104. font-weight: bold;
  105. color: #fff;
  106. }
  107. .joyride-tip-guide h1 { font-size: 30px; }
  108. .joyride-tip-guide h2 { font-size: 26px; }
  109. .joyride-tip-guide h3 { font-size: 22px; }
  110. .joyride-tip-guide h4 { font-size: 18px; }
  111. .joyride-tip-guide h5 { font-size: 16px; }
  112. .joyride-tip-guide h6 { font-size: 14px; }
  113. .joyride-tip-guide p {
  114. margin: 0 0 18px 0;
  115. font-size: 14px;
  116. line-height: 18px;
  117. }
  118. .joyride-tip-guide a {
  119. color: rgb(255,255,255);
  120. text-decoration: none;
  121. border-bottom: dotted 1px rgba(255,255,255,0.6);
  122. }
  123. .joyride-tip-guide a:hover {
  124. color: rgba(255,255,255,0.8);
  125. border-bottom: none;
  126. }
  127. /* Button Style */
  128. .joyride-tip-guide .joyride-next-tip {
  129. width: auto;
  130. padding: 6px 18px 4px;
  131. font-size: 13px;
  132. text-decoration: none;
  133. color: rgb(255,255,255);
  134. border: solid 1px rgb(0,60,180);
  135. background: rgb(0,99,255);
  136. background: -moz-linear-gradient(top, rgb(0,99,255) 0%, rgb(0,85,214) 100%);
  137. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(0,99,255)), color-stop(100%,rgb(0,85,214)));
  138. background: -webkit-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  139. background: -o-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  140. background: -ms-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  141. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0063ff', endColorstr='#0055d6',GradientType=0 );
  142. background: linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  143. text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  144. -webkit-border-radius: 2px;
  145. -moz-border-radius: 2px;
  146. border-radius: 2px;
  147. -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
  148. -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
  149. box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
  150. }
  151. .joyride-next-tip:hover {
  152. color: rgb(255,255,255) !important;
  153. border: solid 1px rgb(0,60,180) !important;
  154. background: rgb(43,128,255);
  155. background: -moz-linear-gradient(top, rgb(43,128,255) 0%, rgb(29,102,211) 100%);
  156. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(43,128,255)), color-stop(100%,rgb(29,102,211)));
  157. background: -webkit-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  158. background: -o-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  159. background: -ms-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  160. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b80ff', endColorstr='#1d66d3',GradientType=0 );
  161. background: linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  162. }
  163. .joyride-timer-indicator-wrap {
  164. width: 50px;
  165. height: 3px;
  166. border: solid 1px rgba(255,255,255,0.1);
  167. position: absolute;
  168. right: 17px;
  169. bottom: 16px;
  170. }
  171. .joyride-timer-indicator {
  172. display: block;
  173. width: 0;
  174. height: inherit;
  175. background: rgba(255,255,255,0.25);
  176. }
  177. .joyride-close-tip {
  178. position: absolute;
  179. right: 10px;
  180. top: 10px;
  181. color: rgba(255,255,255,0.4) !important;
  182. text-decoration: none;
  183. font-family: Verdana, sans-serif;
  184. font-size: 10px;
  185. font-weight: bold;
  186. border-bottom: none !important;
  187. }
  188. .joyride-close-tip:hover {
  189. color: rgba(255,255,255,0.9) !important;
  190. }
  191. .joyride-modal-bg {
  192. position: fixed;
  193. height: 100%;
  194. width: 100%;
  195. background: rgb(0,0,0);
  196. background: transparent;
  197. background: rgba(0,0,0, 0.5);
  198. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  199. filter: alpha(opacity=50);
  200. opacity: 0.5;
  201. z-index: 100;
  202. display: none;
  203. top: 0;
  204. left: 0;
  205. cursor: pointer;
  206. }