22 lines
392 B
CSS
22 lines
392 B
CSS
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
|
|
@import 'accomplishments.css';
|
|
@import 'common.css';
|
|
@import 'forms.css';
|
|
|
|
body {
|
|
@apply bg-gray-200;
|
|
}
|
|
|
|
.screencap {
|
|
@apply overflow-hidden;
|
|
@apply border-2;
|
|
@apply border-black;
|
|
@apply border-gray-500;
|
|
@apply border-solid;
|
|
@apply rounded-lg;
|
|
@apply shadow-xl;
|
|
}
|