A simple gradient creator for minecraft
1.gradient {
2 width: 100%;
3 height: 100px;
4 background-color: gray;
5}
6
7@media screen and (max-width: 992px) {
8 body {
9 background-color: blue;
10 }
11}
12
13.point {
14 width: 30px;
15 height: 30px;
16 cursor: pointer;
17 /* position: absolute; */
18 background-image: url("./marker.svg");
19 background-size: cover;
20 transform: rotate(180deg);
21}
22
23.list-color {
24 width: 20px;
25 height: 20px;
26 border-radius: var(--bs-border-radius);
27}
28
29.minecraft-block {
30 width: 32px;
31 height: 32px;
32}