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
+23
View File
@@ -0,0 +1,23 @@
// ----------------------------------------------
// Card Style
// ----------------------------------------------
.card-title {
font-size: 18px;
}
.card-subtitle {
font-size: 14px;
}
.card {
margin-bottom: 30px;
}
.card-hover {
transition: 0.2s ease-in;
&:hover {
transform: translate3d(0px, -5px, 0px);
}
}
+39
View File
@@ -0,0 +1,39 @@
// ----------------------------------------------
// Reboot Style
// ----------------------------------------------
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
a:hover {
color: $primary;
}
ul {
list-style: none;
padding-left: 0;
}
:focus {
outline: 0;
box-shadow: none !important;
}
.cursor-pointer {
cursor: pointer;
}
.calendar-events {
cursor: move;
}
.object-fit-cover {
object-fit: cover;
}