Files
Reactive-Resume/src/components/dashboard/CreateResume.module.css
Amruth Pillai 89fa8236e8 - creating a dynamic color palette
- implementing actions section
2020-07-10 01:09:33 +05:30

32 lines
699 B
CSS

.resume {
@apply relative flex flex-col items-center;
}
.resume > .backdrop {
max-width: 184px;
height: 260px;
@apply rounded absolute w-full bg-black text-white shadow;
@apply absolute flex justify-center items-center;
}
.resume > .page {
max-width: 184px;
height: 260px;
@apply rounded absolute w-full bg-primary-100 text-primary-400;
@apply transition-opacity duration-200 ease-in-out;
@apply cursor-pointer absolute flex justify-center items-center;
}
.resume > .page:hover {
@apply transition-opacity duration-200 ease-in-out opacity-25;
}
.resume > .meta {
margin-top: 260px;
@apply text-center;
}
.resume > .meta p {
@apply mt-3 font-medium leading-normal;
}