File size: 1,269 Bytes
0e679c3 5955f31 0e679c3 5955f31 0e679c3 5955f31 0e679c3 5955f31 0e679c3 5955f31 0e679c3 5955f31 0e679c3 c07e981 6e6e2b5 c07e981 6e6e2b5 c07e981 6e6e2b5 c07e981 1d67543 848ff3f 1d67543 | 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 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
height: 100vh;
}
#app {
display: flex;
height: 100%;
}
.sidebar-btn {
display: flex;
align-items: center;
width: 100%;
padding: 0.75rem 1rem;
border-radius: 0.5rem;
font-size: 0.875rem;
color: #e5e7eb;
transition: all 0.2s;
}
.sidebar-btn:hover {
background-color: #374151;
}
.sidebar-btn.active {
background-color: #1e40af;
color: white;
}
#previewBox {
scrollbar-width: thin;
scrollbar-color: #4b5563 #1f2937;
}
#previewBox::-webkit-scrollbar {
width: 6px;
}
#previewBox::-webkit-scrollbar-track {
background: #1f2937;
}
#previewBox::-webkit-scrollbar-thumb {
background-color: #4b5563;
border-radius: 3px;
}
#promptInput {
color: white;
}
.empty {
color: #9ca3af;
}
.ai-output {
margin: 12px;
padding: 12px;
border-radius: 8px;
background: #0f1b2d;
color: #e5e7eb;
font-size: 14px;
white-space: pre-line;
border-left: 4px solid #3b82f6;
line-height: 1.5;
}
.bg-gray-700 {
background-color: #374151;
}
.text-red-400 {
color: #f87171;
}
.text-sm {
font-size: 0.875rem;
}
#previewBox .text-sm {
line-height: 1.5;
}
|