initial commit
This commit is contained in:
23
src/resources/css/components/buttons.css
Normal file
23
src/resources/css/components/buttons.css
Normal 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;
|
||||
}
|
||||
11
src/resources/css/components/cards.css
Normal file
11
src/resources/css/components/cards.css
Normal 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;
|
||||
}
|
||||
13
src/resources/css/components/tables.css
Normal file
13
src/resources/css/components/tables.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user