summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/gradient.scss
blob: c304d5fc3678bcbae6dcc4ff3a964aafa123ee9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	.top-gradient {
		background: -moz-linear-gradient(
				top, 
				rgb(216,220,225) 0, 
				rgb(255,255,255) 1em, 
				rgb(255,255,255) 100%);
		background: -webkit-linear-gradient(
				top,  
				rgb(216,220,225) 0,
				rgb(255,255,255) 1em,
				rgb(255,255,255) 100%);
		background: linear-gradient(
				to bottom,  
				rgb(216,220,225) 0%,
				rgb(255,255,255) 5%,
				rgb(255,255,255) 100%);
	}