35835-vm/assets/css/custom.css
Flatlogic Bot 470453f568 1.0.1
2025-11-18 19:02:04 +00:00

87 lines
1.6 KiB
CSS

/* assets/css/custom.css */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #F8F9FA;
}
.sidebar {
position: fixed;
top: 0;
left: 0;
bottom: 0;
z-index: 100;
padding: 56px 0 0; /* Height of navbar */
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
background-color: #FFFFFF;
}
.sidebar-sticky {
position: relative;
top: 0;
height: calc(100vh - 56px);
padding-top: .5rem;
overflow-x: hidden;
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
.main-content {
margin-left: 240px; /* Same as sidebar width */
padding-top: 70px;
}
.navbar {
background: linear-gradient(90deg, #0A68FF 0%, #0052CC 100%);
}
.navbar-brand {
font-weight: 600;
}
.form-control-dark {
color: #fff;
background-color: rgba(255, 255, 255, .1);
border-color: rgba(255, 255, 255, .1);
}
.form-control-dark:focus {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.news-card {
border-radius: 0.5rem;
border: 1px solid #e9ecef;
transition: box-shadow 0.2s ease-in-out;
}
.news-card:hover {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.news-card .card-title {
font-weight: 600;
color: #212529;
}
.news-card .card-subtitle {
font-size: 0.875rem;
color: #6c757d;
}
.news-card .card-text {
color: #495057;
}
.news-card .btn-outline-secondary {
border-radius: 0.25rem;
}
.filter-group .form-check-label {
font-size: 0.9rem;
}
.filter-group h6 {
font-weight: 600;
color: #0A68FF;
}