File size: 3,013 Bytes
3217c1d 4d6d71e 3217c1d 4d6d71e 3217c1d 529b1e4 7afb1ad 4d6d71e 3217c1d 4d6d71e 3217c1d 7afb1ad 4d6d71e 3217c1d 4d6d71e 3217c1d 7afb1ad 3217c1d 7afb1ad a9706d2 3217c1d 385b2fe 56dbfc4 53b6d1a 56dbfc4 53b6d1a 56dbfc4 3217c1d |
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 |
/* Base styles */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
transition: all 0.3s ease;
}
/* Tab styles */
.tab-btn {
position: relative;
transition: all 0.2s ease;
cursor: pointer;
border: none;
background: none;
outline: none;
}
.tab-btn::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background-color: transparent;
transition: all 0.2s ease;
}
.tab-btn.active {
color: #3b82f6;
font-weight: 500;
}
.tab-btn.active::after {
background-color: #3b82f6;
}
.tab-btn:focus {
outline: 2px solid rgba(59, 130, 246, 0.5);
outline-offset: 2px;
}
.tab-content {
display: none;
animation: fadeIn 0.5s ease;
}
.tab-content.active {
display: flex;
opacity: 1;
visibility: visible;
}
/* Process diagram styles */
.step-circle {
transition: all 0.3s ease;
}
.step.active .step-circle {
background-color: #3b82f6 !important;
color: white !important;
transform: scale(1.1);
}
.step-arrow {
transition: all 0.3s ease;
opacity: 0.5;
}
.step.active + .step-arrow {
opacity: 1;
}
.step.active + .step-arrow i {
color: #3b82f6 !important;
}
/* Editor styles */
.editor {
resize: none;
transition: all 0.2s ease;
}
.editor:focus {
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}
.example-btn {
padding: 0.5rem 1rem;
background-color: #e2e8f0;
border-radius: 0.25rem;
transition: all 0.2s ease;
}
.example-btn.active {
background-color: #3b82f6;
color: white;
}
/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.pulse {
animation: pulse 1s infinite;
}
.tech-toggle {
transition: all 0.2s ease;
cursor: pointer;
border: none;
outline: none;
}
.tech-toggle:hover {
opacity: 0.8;
}
.tech-toggle.opacity-50 {
opacity: 0.5;
text-decoration: line-through;
}
body[data-js-disabled="true"] [onclick],
body[data-js-disabled="true"] [onload],
body[data-js-disabled="true"] [onchange],
body[data-js-disabled="true"] [onmouseover],
body[data-js-disabled="true"] [onmouseout],
body[data-js-disabled="true"] button[id],
body[data-js-disabled="true"] button[class*="btn"] {
pointer-events: none;
opacity: 0.7;
cursor: not-allowed;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.step {
position: relative;
padding-bottom: 2rem;
}
.step::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 2rem;
background-color: #e2e8f0;
}
.step:last-child::after {
display: none;
}
} |