-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
214 lines (179 loc) · 4.22 KB
/
main.css
File metadata and controls
214 lines (179 loc) · 4.22 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/* Event Approval Page Styles */
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
margin: 0;
padding: 20px 0;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
/* Custom Box Styles */
.event-info {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-left: 5px solid #007bff;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.user-info {
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
border-left: 5px solid #2196f3;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.task-info {
background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
border-left: 5px solid #ff9800;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Enhanced Button Styles */
.button.is-success.is-large {
background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
border: none;
box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
transition: all 0.3s ease;
}
.button.is-success.is-large:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}
.button.is-light.is-large {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border: 1px solid #dee2e6;
transition: all 0.3s ease;
}
.button.is-light.is-large:hover {
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Loading States */
#loadingState .box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
/* Success State */
#successState {
background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
border: 1px solid #c3e6cb;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
/* Error State */
#errorState {
background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
border: 1px solid #f5c6cb;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
/* Points Display */
.box.has-background-primary {
background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/* Input Field Enhancements */
.input[readonly] {
background-color: #f8f9fa;
border-color: #e9ecef;
color: #495057;
}
/* Link Button */
.button.is-link {
background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
border: none;
transition: all 0.3s ease;
}
.button.is-link:hover {
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
/* Modal Enhancements */
.modal-content .box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 0 10px;
}
.section {
padding: 1.5rem;
}
.columns {
margin: 0;
}
.column {
padding: 0.5rem;
}
.button.is-large {
font-size: 1rem;
padding: 0.75rem 1.5rem;
}
.title.is-2 {
font-size: 2rem;
}
.title.is-4 {
font-size: 1.25rem;
}
}
/* Animation Classes */
.fade-in {
animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.slide-up {
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
/* Print Styles */
@media print {
body {
background: white;
}
.button {
display: none;
}
.box {
box-shadow: none;
border: 1px solid #ddd;
}
}