36 lines
799 B
CSS
36 lines
799 B
CSS
@import './base.css';
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
#app {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
height: fit-content;
|
|
min-height: 100vh;
|
|
background: radial-gradient(ellipse at 50% -50%, rgba(49, 46, 129, 1) 60%, rgba(24, 30, 42, 1) 80%);
|
|
font-weight: normal;
|
|
}
|
|
|
|
a,
|
|
.green {
|
|
text-decoration: none;
|
|
color: hsla(160, 100%, 37%, 1);
|
|
transition: 0.4s;
|
|
}
|
|
|
|
@media (hover: hover) {
|
|
a:hover {
|
|
background-color: hsla(160, 100%, 37%, 0.2);
|
|
}
|
|
}
|
|
|
|
.main-container {
|
|
@apply flex w-full md:max-w-lg flex-col justify-center items-center px-4 sm:px-8 py-4 sm:py-6 gap-4 rounded-lg border border-gray-500 backdrop-blur-md drop-shadow-lg shadow-lg mt-10;
|
|
}
|
|
|
|
input[type="number"] {
|
|
appearance: textfield;
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
} |