
- Added FontAwesome webfont files: fa-brands-400.woff2, fa-regular-400.woff2, fa-solid-900.woff2, and fa-v4compatibility.woff2. - Updated base.html to include FontAwesome stylesheet. - Renamed the application title from "Risiko Management" to "ISO27001 Management". - Enhanced navigation menu with dynamic active states for Dashboard, Statistics, Risks, Controls, and Incidents. - Created new templates for dashboard, controls, incidents, risks, and statistics with breadcrumb navigation.
53 lines
No EOL
747 B
CSS
53 lines
No EOL
747 B
CSS
html, body {
|
|
height: 100%;
|
|
}
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 60px;
|
|
left: 0;
|
|
width: 220px;
|
|
height: calc(100% - 60px);
|
|
padding: 1rem;
|
|
border-right: 1px solid #ddd;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.content {
|
|
margin-left: 220px;
|
|
padding: 2rem;
|
|
padding-top: 80px;
|
|
}
|
|
|
|
.navbar.is-fixed-top {
|
|
z-index: 1000;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
position: relative;
|
|
width: 100%;
|
|
height: auto;
|
|
border-right: none;
|
|
padding-top: 0;
|
|
}
|
|
.content {
|
|
margin-left: 0;
|
|
padding-top: 2rem;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Breadcrumps
|
|
**/
|
|
|
|
.breadcrumb {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.content li{
|
|
margin-top: 5px !important;
|
|
}
|
|
|
|
.content li+li {
|
|
margin: 0 !important;
|
|
} |