You are here

demo.css in Joyride JQuery for Drupal Site Tours 7

/* These are just the demo styles and these can be removed and Orbit
will still work like a champ (except any content block needs a background which
our demo gets from this sheet) */

/*	--------------------------------------------------
	Global Reset & Standards
	-------------------------------------------------- */
html, body {
  margin  : 0;
  padding : 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, img, small, strike, strong, em, sub, sup, tt, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td, section {
  margin      : 0;
  padding     : 0;
  border      : 0;
  font-weight : normal;
  font-style  : normal;
  font-size   : 100%;
  line-height : 1;
  font-family : inherit;
  text-align  : left;
}

table {
  border-collapse : collapse;
  border-spacing  : 0;
}

ol, ul {
  list-style : none;
}

/* --------------------------------------------------
	:: Grid
	-------------------------------------------------- */

.container {
  padding : 40px 20px 0 20px;
}

.row {
  width     : 100%;
  max-width : 940px;
  min-width : 727px;
  margin    : 0 auto;
}

/* To fix the grid into a certain size, set max-width to width */
.row .row {
  min-width : 0px;
}

.column, .columns {
  margin-left : 4.4%;
  float       : left;
  min-height  : 1px;
  position    : relative;
}

.column:first-child, .columns:first-child {
  margin-left : 0px;
}

.row .one.columns {
  width : 4.3%;
}

.row .two.columns {
  width : 13%;
}

.row .three.columns {
  width : 21.7%;
}

.row .four.columns {
  width : 30.4%;
}

.row .five.columns {
  width : 39.1%;
}

.row .six.columns {
  width : 47.8%;
}

.row .seven.columns {
  width : 56.5%;
}

.row .eight.columns {
  width : 65.2%;
}

.row .nine.columns {
  width : 73.9%;
}

.row .ten.columns {
  width : 82.6%;
}

.row .eleven.columns {
  width : 91.3%;
}

.row .twelve.columns {
  width : 100%;
}

.row .offset-by-one {
  margin-left : 8.7%;
}

.row .offset-by-two {
  margin-left : 17.4%;
}

.row .offset-by-three {
  margin-left : 26.1%;
}

.row .offset-by-four {
  margin-left : 34.8%;
}

.row .offset-by-five {
  margin-left : 43.5%;
}

.row .offset-by-six {
  margin-left : 52.2%;
}

.row .offset-by-seven {
  margin-left : 60.9%;
}

.row .offset-by-eight {
  margin-left : 69.6%;
}

.row .offset-by-nine {
  margin-left : 78.3%;
}

.row .offset-by-ten {
  margin-left : 87%;
}

.row .offset-by-eleven {
  margin-left : 95.7%;
}

img, object, embed {
  max-width : 100%;
}

img {
  -ms-interpolation-mode : bicubic;
}

/* Clear the columns automagically */
.row:after, .clearfix:after {
  content    : ".";
  display    : block;
  height     : 0;
  clear      : both;
  visibility : hidden;
}

.row:last-child:after {
  content : "";
}

* html .row, * html .clearfix {
  height : 1%;
}

.row, .clearfix {
  display : inline-block;
}

.row, .clearfix {
  display : block;
}

body {
  background  : #fff;
  font-family : "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size   : 13px;
  line-height : 18px;
  text-shadow : 0 0 1px rgba(0, 0, 0, 0.01);
  color       : #555;
}

p {
  line-height : 1.25;
}

h1 {
  font-weight : bold;
  color       : #222;
  font-size   : 36px;
  line-height : 1.5;
}

h2 {
  font-weight : bold;
  color       : #222;
  font-size   : 28px;
  line-height : 1.25;
}

h3 {
  font-weight : bold;
  color       : #222;
  font-size   : 22px;
  line-height : 1.25;
}

h4 {
  font-weight : bold;
  color       : #222;
  font-size   : 18px;
  line-height : 1.25;
}

h1 + a {
  color           : #00baff;
  text-decoration : none;
  font-weight     : normal;
  font-size       : 20px;
}

a:hover {
  text-decoration : underline;
}

hr {
  margin       : 20px 0;
  border       : solid 1px #ccc;
  border-width : 1px 0 0 0;
}

File

inc/css/demo.css
View source
  1. /* These are just the demo styles and these can be removed and Orbit
  2. will still work like a champ (except any content block needs a background which
  3. our demo gets from this sheet) */
  4. /* --------------------------------------------------
  5. Global Reset & Standards
  6. -------------------------------------------------- */
  7. html, body {
  8. margin : 0;
  9. padding : 0;
  10. }
  11. h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, img, small, strike, strong, em, sub, sup, tt, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td, section {
  12. margin : 0;
  13. padding : 0;
  14. border : 0;
  15. font-weight : normal;
  16. font-style : normal;
  17. font-size : 100%;
  18. line-height : 1;
  19. font-family : inherit;
  20. text-align : left;
  21. }
  22. table {
  23. border-collapse : collapse;
  24. border-spacing : 0;
  25. }
  26. ol, ul {
  27. list-style : none;
  28. }
  29. /* --------------------------------------------------
  30. :: Grid
  31. -------------------------------------------------- */
  32. .container {
  33. padding : 40px 20px 0 20px;
  34. }
  35. .row {
  36. width : 100%;
  37. max-width : 940px;
  38. min-width : 727px;
  39. margin : 0 auto;
  40. }
  41. /* To fix the grid into a certain size, set max-width to width */
  42. .row .row {
  43. min-width : 0px;
  44. }
  45. .column, .columns {
  46. margin-left : 4.4%;
  47. float : left;
  48. min-height : 1px;
  49. position : relative;
  50. }
  51. .column:first-child, .columns:first-child {
  52. margin-left : 0px;
  53. }
  54. .row .one.columns {
  55. width : 4.3%;
  56. }
  57. .row .two.columns {
  58. width : 13%;
  59. }
  60. .row .three.columns {
  61. width : 21.7%;
  62. }
  63. .row .four.columns {
  64. width : 30.4%;
  65. }
  66. .row .five.columns {
  67. width : 39.1%;
  68. }
  69. .row .six.columns {
  70. width : 47.8%;
  71. }
  72. .row .seven.columns {
  73. width : 56.5%;
  74. }
  75. .row .eight.columns {
  76. width : 65.2%;
  77. }
  78. .row .nine.columns {
  79. width : 73.9%;
  80. }
  81. .row .ten.columns {
  82. width : 82.6%;
  83. }
  84. .row .eleven.columns {
  85. width : 91.3%;
  86. }
  87. .row .twelve.columns {
  88. width : 100%;
  89. }
  90. .row .offset-by-one {
  91. margin-left : 8.7%;
  92. }
  93. .row .offset-by-two {
  94. margin-left : 17.4%;
  95. }
  96. .row .offset-by-three {
  97. margin-left : 26.1%;
  98. }
  99. .row .offset-by-four {
  100. margin-left : 34.8%;
  101. }
  102. .row .offset-by-five {
  103. margin-left : 43.5%;
  104. }
  105. .row .offset-by-six {
  106. margin-left : 52.2%;
  107. }
  108. .row .offset-by-seven {
  109. margin-left : 60.9%;
  110. }
  111. .row .offset-by-eight {
  112. margin-left : 69.6%;
  113. }
  114. .row .offset-by-nine {
  115. margin-left : 78.3%;
  116. }
  117. .row .offset-by-ten {
  118. margin-left : 87%;
  119. }
  120. .row .offset-by-eleven {
  121. margin-left : 95.7%;
  122. }
  123. img, object, embed {
  124. max-width : 100%;
  125. }
  126. img {
  127. -ms-interpolation-mode : bicubic;
  128. }
  129. /* Clear the columns automagically */
  130. .row:after, .clearfix:after {
  131. content : ".";
  132. display : block;
  133. height : 0;
  134. clear : both;
  135. visibility : hidden;
  136. }
  137. .row:last-child:after {
  138. content : "";
  139. }
  140. * html .row, * html .clearfix {
  141. height : 1%;
  142. }
  143. .row, .clearfix {
  144. display : inline-block;
  145. }
  146. .row, .clearfix {
  147. display : block;
  148. }
  149. body {
  150. background : #fff;
  151. font-family : "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  152. font-size : 13px;
  153. line-height : 18px;
  154. text-shadow : 0 0 1px rgba(0, 0, 0, 0.01);
  155. color : #555;
  156. }
  157. p {
  158. line-height : 1.25;
  159. }
  160. h1 {
  161. font-weight : bold;
  162. color : #222;
  163. font-size : 36px;
  164. line-height : 1.5;
  165. }
  166. h2 {
  167. font-weight : bold;
  168. color : #222;
  169. font-size : 28px;
  170. line-height : 1.25;
  171. }
  172. h3 {
  173. font-weight : bold;
  174. color : #222;
  175. font-size : 22px;
  176. line-height : 1.25;
  177. }
  178. h4 {
  179. font-weight : bold;
  180. color : #222;
  181. font-size : 18px;
  182. line-height : 1.25;
  183. }
  184. h1 + a {
  185. color : #00baff;
  186. text-decoration : none;
  187. font-weight : normal;
  188. font-size : 20px;
  189. }
  190. a:hover {
  191. text-decoration : underline;
  192. }
  193. hr {
  194. margin : 20px 0;
  195. border : solid 1px #ccc;
  196. border-width : 1px 0 0 0;
  197. }