initial commit

This commit is contained in:
2026-06-06 10:05:39 +07:00
commit b22608adbc
1577 changed files with 641460 additions and 0 deletions
@@ -0,0 +1,17 @@
// ----------------------------------------------
// Background Style
// ----------------------------------------------
.radial-gradient {
position: relative;
&::before {
content: "";
position: absolute;
height: 100%;
width: 100%;
opacity: 0.3;
background: radial-gradient(rgb(210, 241, 223), rgb(211, 215, 250), rgb(186, 216, 244)) 0% 0% / 400% 400%;
animation: 15s ease 0s infinite normal none running gradient;
}
}
@@ -0,0 +1,12 @@
// ----------------------------------------------
// Icon Size Style
// ----------------------------------------------
.round-8 {
width: 8px;
height: 8px;
}
.round-20 {
width: 20px !important;
height: 20px !important;
}