49 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			No EOL
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| html {
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   html {
 | |
|     font-size: 16px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
 | |
|   box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
 | |
| }
 | |
| 
 | |
| html {
 | |
|   position: relative;
 | |
|   min-height: 100%;
 | |
| }
 | |
| 
 | |
| body {
 | |
|   margin-bottom: 60px;
 | |
| }
 | |
| 
 | |
| /* Custom Navbar Style */
 | |
| .navbar-custom {
 | |
|   background-color: #28a745; /* A nice shade of green */
 | |
| }
 | |
| 
 | |
| .navbar-custom .navbar-brand,
 | |
| .navbar-custom .nav-link {
 | |
|   color: #ffffff; /* White text for good contrast */
 | |
| }
 | |
| 
 | |
| .navbar-custom .nav-link:hover {
 | |
|   color: #d4d4d4; /* A light gray for hover effect */
 | |
| }
 | |
| 
 | |
| /* For tables, to control column widths */
 | |
| .table .col-content {
 | |
|   max-width: 400px; /* Adjust as needed */
 | |
|   word-wrap: break-word; /* Break long words */
 | |
|   white-space: normal; /* Allow text to wrap normally */
 | |
| }
 | |
| 
 | |
| .table .col-actions {
 | |
|   width: 150px; /* Fixed width for action buttons, adjust as needed */
 | |
|   min-width: 120px; /* Ensure minimum space */
 | |
|   white-space: nowrap; /* Keep buttons on one line, prevent wrapping */
 | |
| } | 
