zdravko/web/static/css/main.css

55 lines
1 KiB
CSS
Raw Normal View History

.feather {
width: 24px;
height: 24px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
.btn {
@apply font-bold py-2 px-4 rounded;
}
.btn:hover {
@apply bg-gray-200 shadow-inner;
}
.btn-active {
@apply bg-gray-300 text-black shadow;
}
.btn-active:hover {
@apply shadow;
}
.sidebar {
@apply w-48 h-fit text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg;
}
.sidebar li:first-child a {
@apply rounded-t-lg;
}
.sidebar li:last-child a {
@apply rounded-b-lg;
}
.sidebar a {
@apply w-full block px-4 py-2 border-b border-gray-200 hover:bg-gray-100 hover:text-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-700 focus:text-blue-700;
}
.sidebar a.active {
@apply bg-blue-700 text-white;
}
.healthchecks {
@apply grid justify-items-stretch justify-stretch items-center mt-20 bg-gray-200 shadow-inner p-5 rounded-lg;
}
.healthchecks > div:not(:last-child) {
@apply mb-3;
}