mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:17:30 -04:00
22 lines
426 B
CSS
22 lines
426 B
CSS
/*
|
|
expect:
|
|
css-gradients: 2
|
|
css-repeating-gradients: 2
|
|
*/
|
|
|
|
.radial {
|
|
background: radial-gradient(ellipse farthest-corner, black, white);
|
|
}
|
|
|
|
.simple1 {
|
|
background: linear-gradient(black, white);
|
|
}
|
|
|
|
.repeating {
|
|
background: repeating-linear-gradient(180deg,rgb(26,198,204),rgb(26,198,204) 7%, rgb(100,100,100) 10%);
|
|
}
|
|
|
|
.color {
|
|
background: red repeating-radial-gradient(ellipse farthest-corner, black, white);
|
|
}
|