File size: 2,436 Bytes
509f3c2 7a88c33 509f3c2 7a88c33 509f3c2 7a88c33 509f3c2 7a88c33 509f3c2 7a88c33 509f3c2 7a88c33 509f3c2 |
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 |
/* PySQL Labs - Global Styles */
:root {
--color-primary: #22c55e;
--color-secondary: #d946ef;
--color-dark: #111827;
--color-light: #f9fafb;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', system-ui, sans-serif;
background-color: #111827;
color: #f9fafb;
overflow-x: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #374151;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #4b5563;
}
/* Code Editor Styling */
.code-editor {
font-family: 'JetBrains Mono', Monaco, 'Courier New', monospace;
font-size: 14px;
line-height: 1.5;
}
/* Button Animations */
.btn-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
}
}
/* Card Hover Effects */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}
/* Gradient Text */
.gradient-text {
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Progress Bar Animation */
.progress-fill {
transition: width 0.5s ease-in-out;
}
/* Fade In Animation */
.fade-in {
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Typewriter Effect */
.typewriter {
overflow: hidden;
border-right: .15em solid var(--color-primary);
white-space: nowrap;
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--color-primary) }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.stack-mobile {
flex-direction: column;
}
.text-mobile-center {
text-align: center;
}
} |