/
Rics
/
JobReady
Обзор
Документация
Войти
/
Rics
/
JobReady
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Front/src/widgets/Compiler/ui/compiler.module.scss
101 строка
1 KB
Rics
add app
16 сен 2025, 16:56
16 сен 2025, 16:56
75981cd
Код
Авторство
О чём код?
.compiler { display: flex; flex-direction: column; gap: 1rem; padding: 1rem; } .controls { display: flex; justify-content: space-between; align-items: center; gap: 1rem; } .editor { width: 100%; height: 300px; font-family: monospace; font-size: 14px; background-color: #1e1e1e; color: #fff; border: none; padding: 1rem; border-radius: 8px; } .stdin, .output { display: flex; flex-direction: column; gap: 0.5rem; } .input { font-family: monospace; padding: 0.5rem; border-radius: 4px; border: 1px solid #ccc; } .pre { padding: 1rem; border-radius: 6px; font-family: monospace; overflow-x: auto; } .dropdown { position: relative; width: 160px; font-family: sans-serif; } .selected { background: #3a3a3a; color: white; padding: 10px 12px; border-radius: 4px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .arrow { margin-left: 8px; font-size: 12px; transition: transform 0.3s ease; } .arrow.open { transform: rotate(180deg); } .options { position: absolute; top: 100%; left: 0; width: 100%; background: #3a3a3a; color: white; border-radius: 4px; margin-top: 4px; list-style: none; padding: 0; z-index: 10; overflow: hidden; } .options li { padding: 10px 12px; cursor: pointer; } .options li:hover { background: #505050; }