/* * Style sheet for GPU-related UI elements in the Tabs application. * This file defines styles for various components rendered on the GPU. */ /* Base styles for all GPU elements */ .gpu-element { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 8px; overflow: hidden; } /* Styles for the main GPU component */ .gpu-main { background-color: #2b2b2b; color: #ffffff; font-family: 'Segoe UI', sans-serif; font-size: 16px; } /* Styles for the secondary GPU component */ .gpu-secondary { background-color: #333333; color: #eeeeee; font-family: 'Roboto', sans-serif; font-size: 14px; } /* Styles for the third GPU component */ .gpu-third { background-color: #4a4a4a; color: #cccccc; font-family: 'Courier New', monospace; font-size: 12px; } /* Responsive styles for different screen sizes */ @media (max-width: 768px) { .gpu-main { font-size: 14px; } .gpu-secondary { font-size: 12px; } .gpu-third { font-size: 10px; } }