CodeIDE / src /App.css
FrederickSundeep's picture
commit initial 09-12-2025 002
25fd1e9
raw
history blame
1.23 kB
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Menu dropdowns */
.ide-menu-wrapper {
position: relative;
}
.ide-menu-dropdown {
position: absolute;
top: 100%;
left: 0;
background: #252526;
border: 1px solid #3c3c3c;
min-width: 160px;
z-index: 50;
display: flex;
flex-direction: column;
}
.ide-menu-dropdown button {
border: none;
background: transparent;
color: #ddd;
text-align: left;
padding: 4px 10px;
font-size: 13px;
cursor: pointer;
}
.ide-menu-dropdown button:hover {
background: rgba(255, 255, 255, 0.08);
}
/* Explanation section inside AI panel */
.ide-explanation {
border-top: 1px solid #333;
max-height: 50%;
display: flex;
flex-direction: column;
}