1/* A gradient tilted 100 degrees,
2 starting gray and finishing black */
3
4.class {
5 background: linear-gradient(100deg, rgba(63, 63, 63, 0.8) 0%, rgba(255, 255, 255, 0) 25%);
6}
7
8/* A gradient going from the bottom to top
9 starting red and finishing orange */
10
11.class {
12 background: linear-gradient(to top, #f32b60, #ff8f1f);
13}
14
1body
2{
3 width: 100%;
4 height: 100vh;
5 color: #fff;
6 background-image: linear-gradient(180deg, #581845, #900C3F, #C70039, #FF5733, #FFC300);
7}
8
9/* If scrollbars are appearing you can disable them by just typing*/
10
11::-webkit-scrollbar
12{
13 display: none;
14}
1/*From bottom to top*/
2background: rgb(166,166,166);
3background: linear-gradient(0deg, rgba(166,166,166,1) 0%, rgba(255,255,255,1) 29%);