/home/devscfvi/crypto.devsquantum.com/styles.css
/* Custom Styles for Crypto Trading Journal */
* {
-webkit-tap-highlight-color: transparent;
}
input:focus,
textarea:focus,
select:focus {
outline: none;
}
/* Glass morphism effect */
.glass {
backdrop-filter: blur(16px);
background: rgba(30, 27, 75, 0.7);
}
/* Gradient backgrounds */
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-green {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.gradient-red {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
/* Navigation */
.nav-btn {
color: #94a3b8;
transition: all 0.3s;
}
.nav-btn:hover {
color: #e0e7ff;
}
.nav-btn.active {
color: #8b5cf6;
background: rgba(139, 92, 246, 0.1);
}
/* Animations */
@keyframes slideUp {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.slide-up {
animation: slideUp 0.3s ease-out;
}
.fade-in {
animation: fadeIn 0.3s ease-out;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(30, 27, 75, 0.3);
}
::-webkit-scrollbar-thumb {
background: rgba(139, 92, 246, 0.5);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(139, 92, 246, 0.7);
}
/* Emotion badges */
.emotion-badge {
display: inline-flex;
align-items: center;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
}
.emotion-confident { background: rgba(34, 197, 94, 0.2); color: #86efac; }
.emotion-fearful { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.emotion-fomo { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.emotion-greedy { background: rgba(249, 115, 22, 0.2); color: #fdba74; }
.emotion-calm { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.emotion-anxious { background: rgba(168, 85, 247, 0.2); color: #d8b4fe; }
/* Category badges */
.category-badge {
display: inline-flex;
align-items: center;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
}
.category-scalping { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.category-swing { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.category-breakout { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.category-pullback { background: rgba(34, 197, 94, 0.2); color: #86efac; }
.category-reversal { background: rgba(168, 85, 247, 0.2); color: #d8b4fe; }
.category-trend { background: rgba(20, 184, 166, 0.2); color: #5eead4; }
/* Discipline score colors */
.discipline-1, .discipline-2, .discipline-3 { color: #ef4444; }
.discipline-4, .discipline-5 { color: #f59e0b; }
.discipline-6, .discipline-7 { color: #eab308; }
.discipline-8, .discipline-9 { color: #22c55e; }
.discipline-10 { color: #10b981; }
/* Loading spinner */
.spinner {
border: 3px solid rgba(139, 92, 246, 0.1);
border-top: 3px solid #8b5cf6;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Modal backdrop */
.modal-backdrop {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(4px);
}
/* Charts */
canvas {
max-width: 100%;
height: auto !important;
}
/* Responsive */
@media (max-width: 640px) {
.glass {
backdrop-filter: blur(12px);
}
}
/* Toast notifications */
.toast {
position: fixed;
top: 1rem;
right: 1rem;
padding: 1rem 1.5rem;
border-radius: 0.75rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
z-index: 9999;
animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
from {
transform: translateY(-100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.toast-success {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: white;
}
.toast-error {
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
color: white;
}
.toast-info {
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
color: white;
}
/* Stat cards */
.stat-card {
transition: transform 0.2s;
}
.stat-card:hover {
transform: translateY(-2px);
}
/* Progress bars */
.progress-bar {
height: 8px;
border-radius: 9999px;
background: rgba(139, 92, 246, 0.1);
overflow: hidden;
}
.progress-fill {
height: 100%;
border-radius: 9999px;
transition: width 0.3s ease;
}
/* Tags input */
.tag-input-container {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
padding: 0.75rem;
background: rgba(15, 23, 42, 0.5);
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 0.75rem;
}
.tag-item {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.25rem 0.75rem;
background: rgba(139, 92, 246, 0.2);
border-radius: 9999px;
font-size: 0.875rem;
}
.tag-remove {
cursor: pointer;
opacity: 0.7;
transition: opacity 0.2s;
}
.tag-remove:hover {
opacity: 1;
}
/* Empty states */
.empty-state {
text-align: center;
padding: 3rem 1rem;
color: #94a3b8;
}
.empty-state svg {
margin: 0 auto 1rem;
opacity: 0.5;
}