-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
1,461 additions
and
419 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,83 @@ | ||
.btn { | ||
@apply .flex-shrink-0 .text-sm .border-4 .text-gray-900 .py-1 .px-2 .rounded .no-underline .shadow-md; | ||
@apply flex-shrink-0 text-sm border-4 text-gray-900 py-1 px-2 rounded no-underline shadow-md; | ||
} | ||
|
||
.btn.btn-sm { | ||
@apply .border; | ||
@apply border; | ||
} | ||
|
||
.btn.btn-xs { | ||
@apply .text-xs .border; | ||
@apply text-xs border; | ||
} | ||
|
||
.btn.btn-gray-lightest { | ||
@apply .bg-gray-100 .border-gray-100; | ||
@apply bg-gray-100 border-gray-100; | ||
} | ||
|
||
.btn.btn-gray-lightest:hover, .btn.btn-gray-lightest:focus { | ||
@apply .bg-gray-200 .border-gray-200; | ||
@apply bg-gray-200 border-gray-200; | ||
} | ||
|
||
.btn.btn-black { | ||
@apply .bg-gray-900 .border-gray-900 .text-white; | ||
@apply bg-gray-900 border-gray-900 text-white; | ||
} | ||
|
||
.btn.btn.btn-black:hover, .btn.btn.btn-black:focus { | ||
@apply .bg-gray-800 .border-gray-800; | ||
@apply bg-gray-800 border-gray-800; | ||
} | ||
|
||
.btn.btn-blue { | ||
@apply .bg-blue-500 .border-blue-500 .text-white; | ||
@apply bg-blue-500 border-blue-500 text-white; | ||
} | ||
|
||
.btn.btn.btn-blue:hover, .btn.btn.btn-blue:focus { | ||
@apply .bg-blue-600 .border-blue-600; | ||
@apply bg-blue-600 border-blue-600; | ||
} | ||
|
||
.btn.btn-red { | ||
@apply .bg-red-500 .border-red-500 .text-white; | ||
@apply bg-red-500 border-red-500 text-white; | ||
} | ||
|
||
.btn.btn.btn-red:hover, .btn.btn.btn-red:focus { | ||
@apply .bg-red-500 .border-red-500; | ||
@apply bg-red-500 border-red-500; | ||
} | ||
|
||
.btn.btn-green { | ||
@apply .bg-green-500 .border-green-500 .text-white; | ||
@apply bg-green-500 border-green-500 text-white; | ||
} | ||
|
||
.btn.btn.btn-green:hover, .btn.btn.btn-green:focus { | ||
@apply .bg-green-600 .border-green-600; | ||
@apply bg-green-600 border-green-600; | ||
} | ||
|
||
.btn.btn-orange { | ||
@apply .bg-orange-500 .border-orange-500 .text-white; | ||
@apply bg-yellow-500 border-yellow-500 text-white; | ||
} | ||
|
||
.btn.btn.btn-orange:hover, .btn.btn.btn-orange:focus { | ||
@apply .bg-orange-600 .border-orange-600; | ||
@apply bg-yellow-600 border-yellow-600; | ||
} | ||
|
||
.btn.btn-gray-light { | ||
@apply .bg-gray-400 .border-gray-400 .text-gray-800; | ||
@apply bg-gray-400 border-gray-400 text-gray-800; | ||
} | ||
|
||
.btn.btn-gray-light:hover, .btn.btn-gray-light:focus { | ||
@apply .bg-gray-500 .border-gray-500; | ||
@apply bg-gray-500 border-gray-500; | ||
} | ||
|
||
.btn.btn-white { | ||
@apply .bg-white .border-gray-400 .text-gray-800; | ||
@apply bg-white border-gray-400 text-gray-800; | ||
} | ||
|
||
.btn.btn-white:hover, .btn.btn-white:focus { | ||
@apply .bg-gray-100; | ||
@apply bg-gray-100; | ||
} | ||
|
||
.btn.btn-blue-outline { | ||
@apply .bg-white .border-blue-500 .text-blue-600; | ||
@apply bg-white border-blue-500 text-blue-600; | ||
} | ||
|
||
.btn.btn-blue-outline:hover, .btn.btn-blue-outline:focus { | ||
@apply .bg-blue-500 .text-white .border-transparent; | ||
@apply bg-blue-500 text-white border-transparent; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
.card { | ||
@apply .bg-white .shadow-lg .p-3; | ||
@apply bg-white shadow-lg p-3; | ||
} | ||
|
||
.card.card-no-shadow { | ||
@apply .shadow-none; | ||
@apply shadow-none; | ||
} | ||
|
||
.card.card-border { | ||
@apply .border; | ||
@apply border; | ||
} | ||
|
||
.card.card-shadow-md { | ||
@apply .shadow-md; | ||
@apply shadow-md; | ||
} | ||
|
||
@screen sm { | ||
.card { | ||
@apply .rounded-lg; | ||
@apply rounded-lg; | ||
} | ||
} | ||
|
||
.badge { | ||
@apply .items-center .text-white .leading-none .flex; | ||
@apply items-center text-white leading-none flex; | ||
} | ||
|
||
.badge .badge-inner { | ||
@apply .flex .rounded-full .uppercase .px-2 .py-1 .text-xs .font-bold; | ||
@apply flex rounded-full uppercase px-2 py-1 text-xs font-bold; | ||
} | ||
|
||
@screen lg { | ||
.badge { | ||
@apply .rounded-full .inline-flex; | ||
@apply rounded-full inline-flex; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
.nav-link { | ||
@apply .no-underline .text-white .opacity-50 .flex .items-center .py-4 .border-b .border-transparent transition duration-300; | ||
@apply no-underline text-white opacity-50 flex items-center py-4 border-b border-transparent transition duration-300; | ||
} | ||
|
||
.nav-link:hover, .nav-link:focus { | ||
@apply .opacity-75; | ||
@apply opacity-75; | ||
} | ||
|
||
.nav-link.active { | ||
@apply .no-underline .opacity-100 .text-white .flex .items-center .py-4 transition duration-300; | ||
@apply no-underline opacity-100 text-white flex items-center py-4 transition duration-300; | ||
} | ||
|
||
@screen lg { | ||
.nav-link { | ||
@apply .text-gray-500 .py-2; | ||
@apply text-gray-500 py-2; | ||
} | ||
.nav-link.active { | ||
@apply .text-blue-500 .py-2; | ||
@apply text-blue-500 py-2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
.notification { | ||
@apply .border-t-4 .rounded-b .px-4 .py-3 .shadow-md .mb-2 .mr-2; | ||
@apply border-t-4 rounded-b px-4 py-3 shadow-md mb-2 mr-2; | ||
} | ||
|
||
.notification-info { | ||
@apply .bg-blue-100 .border-blue-500 .text-blue-900; | ||
@apply bg-blue-100 border-blue-500 text-blue-900; | ||
} | ||
|
||
.notification-info .icon { | ||
@apply .text-blue-500; | ||
@apply text-blue-500; | ||
} | ||
|
||
.notification-success { | ||
@apply .bg-teal-100 .border-teal-500 .text-teal-900; | ||
@apply bg-green-100 border-green-500 text-green-900; | ||
} | ||
|
||
.notification-success .icon { | ||
@apply .text-teal-500; | ||
@apply text-green-500; | ||
} | ||
|
||
.notification-warning { | ||
@apply .bg-orange-100 .border-orange-500 .text-orange-900; | ||
@apply bg-yellow-100 border-yellow-500 text-yellow-900; | ||
} | ||
|
||
.notification-warning .icon { | ||
@apply .text-orange-500; | ||
@apply text-yellow-500; | ||
} | ||
|
||
.notification-error { | ||
@apply .bg-red-100 .border-red-500 .text-red-900; | ||
@apply bg-red-100 border-red-500 text-red-900; | ||
} | ||
|
||
.notification-error .icon { | ||
@apply .text-red-500; | ||
@apply text-red-500; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
.table-wrapper { | ||
@apply .overflow-x-auto .w-full .block; | ||
@apply overflow-x-auto w-full block; | ||
} | ||
|
||
.table { | ||
@apply .w-full .max-w-full; | ||
@apply w-full max-w-full; | ||
} | ||
|
||
.table th { | ||
@apply .p-2 .text-left; | ||
@apply p-2 text-left; | ||
} | ||
|
||
.table tbody tr:hover { | ||
@apply .bg-gray-200; | ||
@apply bg-gray-200; | ||
} | ||
|
||
.table td { | ||
@apply .border-t .p-2; | ||
@apply border-t p-2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.