wn-discoteam-theme/resources/css/app.css

50 lines
1008 B
CSS
Raw Normal View History

2024-10-03 16:17:51 +02:00
@import '_tailwind-base.css';
2024-02-12 21:44:41 +01:00
/*@import "_custom-base-styles.css";*/
2024-10-03 16:17:51 +02:00
@import '_tailwind-components.css';
2024-02-12 21:44:41 +01:00
/*@import '_custom-components.css';*/
2024-10-03 16:17:51 +02:00
@import '_tailwind-utilities.css';
2024-02-12 21:44:41 +01:00
/*@import "_custom-utilities.css";*/
2024-02-13 01:41:48 +01:00
2024-10-03 16:17:51 +02:00
@import './fonts.css';
2024-09-18 20:42:11 +02:00
.outer-container {
2024-10-03 16:17:51 +02:00
@apply py-10;
2024-09-18 20:42:11 +02:00
}
.container {
2024-10-03 16:17:51 +02:00
@apply max-w-6xl mx-auto px-5 md:px-10;
}
.loader {
border-radius: 50%;
display: inline-block;
border-top: 3px solid #fff;
border-right: 3px solid transparent;
box-sizing: border-box;
animation: rotation 0.8s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
2024-09-18 20:42:11 +02:00
}
2024-10-03 17:06:06 +02:00
.tippy-box[data-theme~='success'] {
@apply bg-green-800 text-green-100 font-semibold;
}
.tippy-box[data-theme~='success'] .tippy-arrow {
@apply text-green-800;
}
.tippy-box[data-theme~='error'] {
@apply bg-red-800 text-red-100 font-semibold;
}
.tippy-box[data-theme~='error'] .tippy-arrow {
@apply text-red-800;
}