0% found this document useful (0 votes)
16 views1 page

HMS CSS File

This document contains CSS styles for a web application. It defines styles for the body, navbar, cards, and responsive tables, including specific styles for different card types like primary, success, warning, and danger. The styles focus on layout, colors, and shadows to enhance the visual presentation of the dashboard elements.

Uploaded by

Atta Gh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

HMS CSS File

This document contains CSS styles for a web application. It defines styles for the body, navbar, cards, and responsive tables, including specific styles for different card types like primary, success, warning, and danger. The styles focus on layout, colors, and shadows to enhance the visual presentation of the dashboard elements.

Uploaded by

Atta Gh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

/* Main CSS Styles */

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
}

.navbar {
box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
margin-bottom: 24px;
}

.table-responsive {
overflow-x: auto;
}

/* Dashboard cards */
.card-primary {
border-left: 4px solid #4e73df;
}

.card-success {
border-left: 4px solid #1cc88a;
}

.card-warning {
border-left: 4px solid #f6c23e;
}

.card-danger {
border-left: 4px solid #e74a3b;
}

You might also like