Files
Reactive-Resume/src/styles/global.css
Amruth Pillai 65fc779d58 - switching from firestore to realtime DB
- implement debouncing tactic to sync data
- display sync indicator
2020-07-06 00:25:31 +05:30

51 lines
644 B
CSS

@import "~react-loader-spinner/dist/loader/css/react-spinner-loader.css";
:root {
@apply transition-colors duration-200 ease-in-out;
}
html,
body {
font-size: 12px;
font-family: "Montserrat", sans-serif;
@apply text-primary bg-inverse;
}
p {
@apply text-justify leading-loose;
}
a {
@apply text-blue-600 font-medium;
}
a:hover {
@apply underline;
}
hr {
@apply w-full border-secondary h-1;
}
section {
@apply grid grid-cols-1 gap-8;
}
#artboard {
color: #444;
}
#artboard hr {
border-color: #eee;
}
.spin {
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}