initial commit

This commit is contained in:
2022-01-04 13:27:11 -07:00
parent 3764dad884
commit aed6ca46c2
63 changed files with 3780 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
.button {
@apply flex flex-row items-center;
}
.button-primary {
@apply border-blue-300 bg-gradient-to-br from-blue-400 to-blue-700;
}
.button-secondary {
@apply border-indigo-300 bg-gradient-to-br from-indigo-400 to-indigo-700;
}
.button-tertiary {
@apply border-blue-300 bg-gradient-to-br from-green-400 to-blue-500;
}
.button-success {
@apply border-green-300 bg-gradient-to-br from-green-400 to-green-700;
}
.button-danger {
@apply border-red-300 bg-gradient-to-br from-red-400 to-red-700;
}

View File

@@ -0,0 +1,11 @@
.card {
@apply flex flex-col nm-flat-white dark:nm-flat-gray-700 border border-gray-100 dark:border-gray-800 overflow-hidden rounded-lg;
}
.card .card-header {
@apply px-4 py-2 rounded-t-lg border-b-2 border-blue-600 font-semibold;
}
.card .card-body {
@apply px-4 py-3 rounded-b-lg;
}

View File

@@ -0,0 +1,13 @@
.table thead tr {
@apply border-b-2 border-gray-700 uppercase text-left;
}
.table-fuzzy-hover tbody:hover td {
color: transparent;
text-shadow: 0 0 2px #999;
}
.table-fuzzy-hover tbody:hover tr:hover td {
color: #444;
text-shadow: 0 1px 0 #fff;
}