mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 01:32:02 +10:00
- intial gatsbyJS setup
- setting up tailwindcss and other plugins - designing the landing page - creating a reusable button component
This commit is contained in:
27
src/styles/global.css
Normal file
27
src/styles/global.css
Normal file
@ -0,0 +1,27 @@
|
||||
:root {
|
||||
--color-primary: #444;
|
||||
--color-primary-dark: #333;
|
||||
--color-inverse: #fff;
|
||||
--color-inverse-dark: #f5f5f5;
|
||||
}
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@import "~react-loader-spinner/dist/loader/css/react-spinner-loader.css";
|
||||
|
||||
html,
|
||||
body {
|
||||
font-size: 12px;
|
||||
@apply text-primary;
|
||||
font-family: "Montserrat", sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
@apply text-blue-600 font-medium;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
@apply underline;
|
||||
}
|
||||
Reference in New Issue
Block a user