mysql-itud / static /style.css
DocUA's picture
Альтернативний варіант
21fefa5
raw
history blame contribute delete
917 Bytes
body {
background-color: #f5f5f5;
}
.card {
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.card-header {
border-top-left-radius: 8px !important;
border-top-right-radius: 8px !important;
}
pre {
background-color: #f8f9fa;
padding: 15px;
border-radius: 5px;
border: 1px solid #ddd;
font-size: 14px;
}
code {
color: #007bff;
}
.table-responsive {
max-height: 400px;
overflow-y: auto;
}
thead th {
position: sticky;
top: 0;
z-index: 1;
}
.bg-success.text-white {
transition: all 0.3s ease;
}
.btn-outline-primary {
margin-top: 10px;
}
textarea {
font-family: monospace;
}
/* Мобільні адаптації */
@media (max-width: 768px) {
pre {
font-size: 12px;
padding: 10px;
}
.container {
padding-left: 10px;
padding-right: 10px;
}
}