css-tests.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*!
  2. * Bootstrap CSS Tests
  3. */
  4. /* Remove background image */
  5. body {
  6. background-image: none;
  7. }
  8. /* Space out subhead */
  9. .subhead {
  10. margin-bottom: 36px;
  11. }
  12. /*h4 {
  13. margin-bottom: 5px;
  14. }
  15. */
  16. .type-test {
  17. margin-bottom: 20px;
  18. padding: 0 20px 20px;
  19. background: url(../../docs/assets/img/grid-baseline-20px.png);
  20. }
  21. .type-test h1,
  22. .type-test h2,
  23. .type-test h3,
  24. .type-test h4,
  25. .type-test h5,
  26. .type-test h6 {
  27. background-color: rgba(255,0,0,.2);
  28. }
  29. /* colgroup tests */
  30. .col1 {
  31. background-color: rgba(255,0,0,.1);
  32. }
  33. .col2 {
  34. background-color: rgba(0,255,0,.1);
  35. }
  36. .col3 {
  37. background-color: rgba(0,0,255,.1);
  38. }
  39. /* Fluid row inputs */
  40. #rowInputs .row > [class*=span],
  41. #fluidRowInputs .row-fluid > [class*=span] {
  42. background-color: rgba(255,0,0,.1);
  43. }
  44. /* Fluid grid */
  45. .fluid-grid {
  46. margin-bottom: 45px;
  47. }
  48. .fluid-grid .row {
  49. height: 40px;
  50. padding-top: 10px;
  51. margin-top: 10px;
  52. color: #ddd;
  53. text-align: center;
  54. }
  55. .fluid-grid .span1 {
  56. background-color: #999;
  57. }
  58. /* Gradients */
  59. [class^="gradient-"] {
  60. width: 100%;
  61. height: 400px;
  62. margin: 20px 0;
  63. -webkit-border-radius: 5px;
  64. -moz-border-radius: 5px;
  65. border-radius: 5px;
  66. }
  67. .gradient-horizontal {
  68. background-color: #333333;
  69. background-image: -moz-linear-gradient(left, #555555, #333333);
  70. background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#555555), to(#333333));
  71. background-image: -webkit-linear-gradient(left, #555555, #333333);
  72. background-image: -o-linear-gradient(left, #555555, #333333);
  73. background-image: linear-gradient(to right, #555555, #333333);
  74. background-repeat: repeat-x;
  75. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=1);
  76. }
  77. .gradient-vertical {
  78. background-color: #474747;
  79. background-image: -moz-linear-gradient(top, #555555, #333333);
  80. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#333333));
  81. background-image: -webkit-linear-gradient(top, #555555, #333333);
  82. background-image: -o-linear-gradient(top, #555555, #333333);
  83. background-image: linear-gradient(to bottom, #555555, #333333);
  84. background-repeat: repeat-x;
  85. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=0);
  86. }
  87. .gradient-directional {
  88. background-color: #333333;
  89. background-image: -moz-linear-gradient(45deg, #555555, #333333);
  90. background-image: -webkit-linear-gradient(45deg, #555555, #333333);
  91. background-image: -o-linear-gradient(45deg, #555555, #333333);
  92. background-image: linear-gradient(45deg, #555555, #333333);
  93. background-repeat: repeat-x;
  94. }
  95. .gradient-vertical-three {
  96. background-color: #8940a5;
  97. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f));
  98. background-image: -webkit-linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  99. background-image: -moz-linear-gradient(top, #00b3ee, #7a43b6 50%, #c3325f);
  100. background-image: -o-linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  101. background-image: linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  102. background-repeat: no-repeat;
  103. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff00b3ee', endColorstr='#ffc3325f', GradientType=0);
  104. }
  105. .gradient-radial {
  106. background-color: #333333;
  107. background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#555555), to(#333333));
  108. background-image: -webkit-radial-gradient(circle, #555555, #333333);
  109. background-image: -moz-radial-gradient(circle, #555555, #333333);
  110. background-image: -o-radial-gradient(circle, #555555, #333333);
  111. background-repeat: no-repeat;
  112. }
  113. .gradient-striped {
  114. background-color: #555555;
  115. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  116. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  117. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  118. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  119. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  120. }
  121. .gradient-horizontal-three {
  122. background-color: #00b3ee;
  123. background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f));
  124. background-image: -webkit-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  125. background-image: -moz-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  126. background-image: -o-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  127. background-image: linear-gradient(to right, #00b3ee, #7a43b6 50%, #c3325f);
  128. background-repeat: no-repeat;
  129. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b3ee', endColorstr='#c3325f', GradientType=0);
  130. }