Created
March 7, 2021 00:36
-
-
Save amacgregor/66c7fd76b55332c77bbdb21c5f62940b to your computer and use it in GitHub Desktop.
Css for phoenix_fund
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This file is for your main application css. */ | |
@import "../node_modules/nprogress/nprogress.css"; | |
@import "tailwindcss/base"; | |
@import "tailwindcss/components"; | |
@import "./custom.css"; | |
@import "./phoenix.css"; | |
@import "tailwindcss/utilities"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Auction */ | |
#auction { | |
@apply max-w-xl mx-auto text-center; | |
button { | |
@apply bg-blue-600 mx-1 py-0 px-4 border border-cool-gray-400 border-2 rounded-lg shadow-sm transition ease-in-out duration-150 outline-none text-5xl; | |
} | |
button:hover { | |
@apply bg-green-300; | |
} | |
img { | |
@apply w-10; | |
} | |
.meter { | |
@apply flex h-24 overflow-hidden text-2xl bg-cool-gray-300 rounded-lg mb-8; | |
} | |
.meter > span { | |
@apply flex flex-col justify-center text-cool-gray-900 text-5xl text-center whitespace-nowrap bg-green-300 font-bold; | |
transition: width 2s ease; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/amacgregor/66c7fd76b55332c77bbdb21c5f62940b#file-custom-css-L26
extra bracket