aboutsummaryrefslogtreecommitdiff
path: root/less/tests/css-tests.css
blob: 2ca3770023d80943eb418fb8e157135e8a24cdb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*!
 * Bootstrap CSS Tests
 */


/* Remove background image */
body {
  background-image: none;
}

/* Space out subhead */
.subhead {
  margin-bottom: 36px;
}
/*h4 {
  margin-bottom: 5px;
}
*/

.type-test {
  margin-bottom: 20px;
  padding: 0 20px 20px;
  background: url(../../docs/assets/img/grid-baseline-20px.png);
}
.type-test h1,
.type-test h2,
.type-test h3,
.type-test h4,
.type-test h5,
.type-test h6 {
  background-color: rgba(255,0,0,.2);
}


/* colgroup tests */
.col1 {
  background-color: rgba(255,0,0,.1);
}
.col2 {
  background-color: rgba(0,255,0,.1);
}
.col3 {
  background-color: rgba(0,0,255,.1);
}



/* Gradients */

[class^="gradient-"] {
  width: 100%;
  height: 400px;
  margin: 20px 0;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.gradient-horizontal {
  background-color: #333333;
  background-image: -moz-linear-gradient(left, #555555, #333333);
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#555555), to(#333333));
  background-image: -webkit-linear-gradient(left, #555555, #333333);
  background-image: -o-linear-gradient(left, #555555, #333333);
  background-image: linear-gradient(to right, #555555, #333333);
  background-repeat: repeat-x;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=1);
}

.gradient-vertical {
  background-color: #474747;
  background-image: -moz-linear-gradient(top, #555555, #333333);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#333333));
  background-image: -webkit-linear-gradient(top, #555555, #333333);
  background-image: -o-linear-gradient(top, #555555, #333333);
  background-image: linear-gradient(to bottom, #555555, #333333);
  background-repeat: repeat-x;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff333333', GradientType=0);
}

.gradient-directional {
  background-color: #333333;
  background-image: -moz-linear-gradient(45deg, #555555, #333333);
  background-image: -webkit-linear-gradient(45deg, #555555, #333333);
  background-image: -o-linear-gradient(45deg, #555555, #333333);
  background-image: linear-gradient(45deg, #555555, #333333);
  background-repeat: repeat-x;
}

.gradient-vertical-three {
  background-color: #8940a5;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f));
  background-image: -webkit-linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  background-image: -moz-linear-gradient(top, #00b3ee, #7a43b6 50%, #c3325f);
  background-image: -o-linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  background-image: linear-gradient(#00b3ee, #7a43b6 50%, #c3325f);
  background-repeat: no-repeat;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff00b3ee', endColorstr='#ffc3325f', GradientType=0);
}

.gradient-radial {
  background-color: #333333;
  background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(#555555), to(#333333));
  background-image: -webkit-radial-gradient(circle, #555555, #333333);
  background-image: -moz-radial-gradient(circle, #555555, #333333);
  background-image: -o-radial-gradient(circle, #555555, #333333);
  background-repeat: no-repeat;
}

.gradient-striped {
  background-color: #555555;
  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));
  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);
  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);
  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);
  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);
}

.gradient-horizontal-three {
  background-color: #00b3ee;
  background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(#00b3ee), color-stop(50%, #7a43b6), to(#c3325f));
  background-image: -webkit-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  background-image: -moz-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  background-image: -o-linear-gradient(left, #00b3ee, #7a43b6 50%, #c3325f);
  background-image: linear-gradient(to right, #00b3ee, #7a43b6 50%, #c3325f);
  background-repeat: no-repeat;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b3ee', endColorstr='#c3325f', GradientType=0);
}