Skip to content

Commit

Permalink
updated tailwind configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
irenekurien committed Apr 23, 2021
1 parent 3913f04 commit c674212
Show file tree
Hide file tree
Showing 4 changed files with 1,043 additions and 7 deletions.
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 28 additions & 1 deletion static/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,800;1,400&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-main font-bold text-red p-10;
}

a {
@apply font-main;
}

.container {
@apply w-2/3 mx-auto p-10 h-72 text-snow;
}

.btn {
@apply rounded-full bg-red m-6 py-2 px-6 text-2xl font-main font-bold cursor-pointer tracking-wider transition duration-500 ease-in-out transform hover:-translate-y-1 hover:scale-110;
}

.anchor {
@apply block h-10 bg-red text-snow my-2 px-5 leading-10 rounded-r-full hover:bg-snow hover:text-red;
}
Loading

0 comments on commit c674212

Please sign in to comment.