mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 18:51:32 +10:00
51 lines
644 B
CSS
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);
|
|
}
|
|
}
|