File size: 2,182 Bytes
f6e45d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* ==========================================================================

   Custom Stylesheet for eath API

   Tailwind is used for layout, this file handles specific brand assets

   and keyframe animations.

   ========================================================================== */

/* --- 1. Brand Variables & Typography --- */
:root {
    --eath-purple: #8B68A2;
    --eath-purple-dark: #705382;
    --eath-purple-light: #EBE4F0;
}

body {
    font-family: 'Inter', sans-serif;
}

/* --- 2. Tailwind Custom Class Mapping --- */
/* Allowing Tailwind to use our CSS variables easily via custom classes */
.text-brand {
    color: var(--eath-purple);
}

.bg-brand {
    background-color: var(--eath-purple);
}

.bg-brand-dark:hover {
    background-color: var(--eath-purple-dark);
}

.bg-brand-light {
    background-color: var(--eath-purple-light);
}

.border-brand {
    border-color: var(--eath-purple);
}

.focus\:border-brand:focus {
    border-color: var(--eath-purple);
}

/* --- 3. UI Interactions --- */
.drag-active {
    border-color: var(--eath-purple) !important;
    background-color: var(--eath-purple-light) !important;
}

.progress-anim {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 4. Custom Loader Animation --- */
/* A professional spinning double ring loader using the brand color */
.custom-loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--eath-purple-light);
    border-top-color: var(--eath-purple);
    animation: spin 1s linear infinite;
    position: relative;
}

.custom-loader::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #333;
    animation: spin-reverse 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}