forked from Business/AccountHub
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .banner-image {
 | |
|     max-height: 100px;
 | |
|     margin: 2em auto;
 | |
|     border: 1px solid grey;
 | |
|     border-radius: 12px;
 | |
| }
 | |
| 
 | |
| .navbar-brand {
 | |
|     font-size: 110%;
 | |
| }
 | |
| 
 | |
| .footer {
 | |
|     margin-top: 10em;
 | |
|     text-align: center;
 | |
| }
 | |
| 
 | |
| /*
 | |
| ==============================
 | |
|             THEMING
 | |
| ==============================
 | |
| 
 | |
| Changing the .navbar-inverse background should be enough on modern browsers.
 | |
| If this app is to be used on IE < 9 (not supported), also set a background-color
 | |
| to replace the rgba()s.
 | |
| 
 | |
| To use a material-color.css navbar theme, remove all the theming styles in this 
 | |
| file and add a .navbar-[color] class to the navbar in app.php.
 | |
| */
 | |
| 
 | |
| /* navbar background */
 | |
| .navbar-inverse {
 | |
|     /* background-color: green; */
 | |
| }
 | |
| 
 | |
| /* Selected page background */
 | |
| .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
 | |
|     background: rgba(0,0,0,.2);
 | |
| }
 | |
| 
 | |
| .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
 | |
|     border-color: rgba(0,0,0,.2);
 | |
| }
 | |
| 
 | |
| .navbar-inverse .navbar-toggle .icon-bar {
 | |
|     background-color: white;
 | |
| }
 | |
| 
 | |
| .navbar-inverse .navbar-brand {
 | |
|     color: white;
 | |
| }
 | |
| 
 | |
| .navbar-inverse .navbar-nav > li > a {
 | |
|     color: white;
 | |
| }
 | |
| 
 | |
| .navbar-inverse .navbar-link {
 | |
|     color: white;
 | |
| } |