• Home
  • Raw
  • Download

Lines Matching full:start

7   // Creates two color stops, start and end, by specifying a color and position for each color stop.
9 .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
10 …background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-perce…
11 …background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); …
12 …background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent);…
14 …oft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-c…
19 // Creates two color stops, start and end, by specifying a color and position for each color stop.
21 .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
22 …background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percen…
23 …background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); …
24 …background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent)…
26 …oft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-c…
29 .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
31 …background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome…
32 background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
33 …background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+,…
35 ….horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color:…
36 … background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
37 background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
38 background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
40 …oft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-c…
42 ….vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #…
43 background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
44 background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
45 background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
47 …oft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-c…